Skip to content

Commit 6b26309

Browse files
committed
Fix
1 parent c73c6b0 commit 6b26309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/string_arrow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ def _result_converter(values, na=None):
456456
return ArrowExtensionArray(values).to_numpy(na_value=np.nan)
457457

458458
def __getattribute__(self, item):
459-
if item in ArrowStringArrayMixin.__dict__:
459+
if item in ArrowStringArrayMixin.__dict__ and item != "_pa_array":
460460
return partial(getattr(ArrowStringArrayMixin, item), self)
461461
return super().__getattribute__(item)
462462

0 commit comments

Comments
 (0)