Skip to content

Commit bbc5612

Browse files
committed
Fix code checks
1 parent 4eea08e commit bbc5612

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
@@ -10111,7 +10111,7 @@ def mask(
1011110111
)
1011210112
):
1011310113
if not cond.flags.writeable:
10114-
cond.setflags(write=1)
10114+
cond.setflags(write=True)
1011510115
cond[isna(cond)] = False
1011610116
cond = cond.astype(bool)
1011710117

0 commit comments

Comments
 (0)