Skip to content

Commit bc3aa8d

Browse files
author
Mike Phung
committed
CLN GH#40498 Remove unecessary copy=False argument from reindex.
1 parent 09b195a commit bc3aa8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6323,7 +6323,7 @@ def fillna(
63236323
modification_index
63246324
]
63256325
else:
6326-
value = value_map.reindex(self.index, copy=False)
6326+
value = value_map.reindex(self.index)
63276327
value = value._values
63286328
elif not is_list_like(value):
63296329
pass

0 commit comments

Comments
 (0)