Skip to content

Commit c73c6b0

Browse files
committed
Remove
1 parent cd19bfb commit c73c6b0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

pandas/core/arrays/arrow/array.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -250,12 +250,6 @@ def __init__(self, values: pa.Array | pa.ChunkedArray) -> None:
250250
)
251251
self._dtype = ArrowDtype(self._pa_array.type)
252252

253-
def __dir__(self):
254-
o = set(dir(type(self)))
255-
o.update(self.__dict__)
256-
o.update(set(dir(ArrowStringArrayMixin)))
257-
return list(o)
258-
259253
@classmethod
260254
def _from_sequence(cls, scalars, *, dtype: Dtype | None = None, copy: bool = False):
261255
"""

0 commit comments

Comments
 (0)