Skip to content

Commit fb4f99f

Browse files
ignore typing of pyarrow_meth
1 parent 90c4672 commit fb4f99f

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
@@ -1710,7 +1710,7 @@ def pyarrow_meth(data, skip_nulls, **kwargs):
17101710
pa.types.is_string(pa_type) or pa.types.is_large_string(pa_type)
17111711
):
17121712

1713-
def pyarrow_meth(data, skip_nulls, min_count=0):
1713+
def pyarrow_meth(data, skip_nulls, min_count=0): # type: ignore[misc]
17141714
mask = pc.is_null(data) if data.null_count > 0 else None
17151715
if skip_nulls:
17161716
if min_count > 0 and check_below_min_count(

0 commit comments

Comments
 (0)