Skip to content

Commit 8388109

Browse files
Future -> DeprecationWarning
1 parent 8f12e3d commit 8388109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/arrow/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ def _logical_method(self, other, op):
844844
f"'{op_name}' operations between boolean dtype and {self.dtype} are "
845845
"deprecated and will raise in a future version. Explicitly "
846846
"cast the strings to a boolean dtype before operating instead.",
847-
FutureWarning,
847+
DeprecationWarning,
848848
stacklevel=find_stack_level(),
849849
)
850850
return op(other, self.astype(bool))

0 commit comments

Comments
 (0)