We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a238601 commit 3f15ca8Copy full SHA for 3f15ca8
pandas/core/arrays/arrow/array.py
@@ -580,7 +580,7 @@ def _box_pa_array(
580
):
581
arr_value = np.asarray(value, dtype=object)
582
# similar to isna(value) but exclude NaN, NaT, nat-like, nan-like
583
- mask = is_pdna_or_none(arr_value)
+ mask = is_pdna_or_none(arr_value) # type: ignore[assignment]
584
585
try:
586
pa_array = pa.array(value, type=pa_type, mask=mask)
0 commit comments