Skip to content

Commit dec5be7

Browse files
update pandas.core.ops.array_ops following pandas-dev#28431
1 parent 7d5a62b commit dec5be7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/core/ops/array_ops.py

+2
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,8 @@ def fill_bool(x, left=None):
380380
filler = fill_int if is_self_int_dtype and is_other_int_dtype else fill_bool
381381

382382
res_values = na_logical_op(lvalues, rvalues, op)
383+
# https://github.com/python/mypy/issues/5128
384+
# error: Cannot call function of unknown type
383385
res_values = filler(res_values) # type: ignore
384386

385387
return res_values

0 commit comments

Comments
 (0)