We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf288d7 commit 3d3b6e0Copy full SHA for 3d3b6e0
src/nested_pandas/nestedframe/core.py
@@ -234,7 +234,7 @@ def __getitem__(self, item):
234
return super().__getitem__(item)
235
236
def _getitem_str(self, item):
237
- if item in self.nested_columns:
+ if self._is_nested_column(item):
238
return NestedSeries(super().__getitem__(item))
239
# Preempt the nested check if the item is a base column, with or without
240
# dots and backticks.
0 commit comments