Skip to content

Commit 6356cc0

Browse files
committed
mypy fixup
1 parent 2467f6e commit 6356cc0

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
@@ -580,7 +580,7 @@ def _box_pa_array(
580580
):
581581
arr_value = np.asarray(value, dtype=object)
582582
# similar to isna(value) but exclude NaN, NaT, nat-like, nan-like
583-
mask = is_pdna_or_none(arr_value)
583+
mask = is_pdna_or_none(arr_value) # type: ignore[assignment]
584584

585585
try:
586586
pa_array = pa.array(value, type=pa_type, mask=mask)

0 commit comments

Comments
 (0)