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/nestedframe/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def __getitem__(self, item):
return super().__getitem__(item)

def _getitem_str(self, item):
if item in self.nested_columns:
if self._is_nested_column(item):
return NestedSeries(super().__getitem__(item))
# Preempt the nested check if the item is a base column, with or without
# dots and backticks.
Expand Down