Skip to content

Commit e45ee10

Browse files
Removed comment related to issue pandas-dev#45774
1 parent 82d64c4 commit e45ee10

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/core/base.py

-2
Original file line numberDiff line numberDiff line change
@@ -541,8 +541,6 @@ def to_numpy(
541541
if copy or na_value is not lib.no_default:
542542
result = result.copy()
543543
if na_value is not lib.no_default:
544-
# Convert the mask to numpy in order to prevent possible
545-
# issues with multiindex compatibility (#45774)
546544
result[np.asanyarray(self.isna())] = na_value
547545
return result
548546

0 commit comments

Comments
 (0)