Skip to content

Commit a493648

Browse files
committed
mypy fixup
1 parent df55897 commit a493648

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

pandas/core/arrays/_arrow_string_mixins.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,7 @@
2323
import pyarrow.compute as pc
2424

2525
if TYPE_CHECKING:
26-
from collections.abc import (
27-
Callable,
28-
Sized,
29-
)
26+
from collections.abc import Callable
3027

3128
from pandas._typing import (
3229
Scalar,
@@ -35,7 +32,7 @@
3532

3633

3734
class ArrowStringArrayMixin:
38-
_pa_array: Sized
35+
_pa_array: pa.ChunkedArray
3936

4037
def __init__(self, *args, **kwargs) -> None:
4138
raise NotImplementedError

0 commit comments

Comments
 (0)