Skip to content

Commit

Permalink
remove private
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohan Jain committed Nov 2, 2023
1 parent 2ef8cea commit 934543f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pandas/core/arrays/arrow/accessors.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
)


class _ArrowAccessor(metaclass=ABCMeta):
class ArrowAccessor(metaclass=ABCMeta):
@abstractmethod
def __init__(self, data: Series, validation_msg: str) -> None:
self._data = data
Expand All @@ -54,7 +54,7 @@ def _pa_array(self) -> pa.Array:
return self._data.array._pa_array


class ListAccessor(_ArrowAccessor):
class ListAccessor(ArrowAccessor):
"""
Accessor object for list data properties of the Series values.
Expand Down Expand Up @@ -207,7 +207,7 @@ def flatten(self) -> Series:
return Series(flattened, dtype=ArrowDtype(flattened.type))


class StructAccessor(_ArrowAccessor):
class StructAccessor(ArrowAccessor):
"""
Accessor object for structured data properties of the Series values.
Expand Down

0 comments on commit 934543f

Please sign in to comment.