Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/nested_pandas/series/ext_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ def dropna(self) -> Self: # type: ignore[name-defined] # noqa: F821

def __arrow_array__(self, type=None):
"""Convert the extension array to a PyArrow array."""
# struct_array is the default "external" representation
# list_array is the default "external" representation
if type is None:
return self.list_array
if pa.types.is_struct(type):
Expand Down
Loading