From 9e6b905b1cf715f0682dc2c825f7365150d059b1 Mon Sep 17 00:00:00 2001 From: Konstantin Malanchev Date: Tue, 16 Sep 2025 16:49:32 -0400 Subject: [PATCH] Fix comment --- src/nested_pandas/series/ext_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nested_pandas/series/ext_array.py b/src/nested_pandas/series/ext_array.py index 4c07970d..582f0a53 100644 --- a/src/nested_pandas/series/ext_array.py +++ b/src/nested_pandas/series/ext_array.py @@ -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):