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 6a2bd1b commit b652f7aCopy full SHA for b652f7a
src/nested_pandas/series/ext_array.py
@@ -651,7 +651,7 @@ def num_chunks(self) -> int:
651
def get_list_index(self) -> np.ndarray:
652
"""Keys mapping values to lists"""
653
if len(self) == 0:
654
- # Since we have no list offests, return an empty array
+ # Since we have no list offsets, return an empty array
655
return np.array([], dtype=int)
656
list_index = np.arange(len(self))
657
return np.repeat(list_index, np.diff(self.list_offsets))
0 commit comments