Skip to content

Commit b652f7a

Browse files
hombitwilsonbb
andauthored
Update src/nested_pandas/series/ext_array.py
Co-authored-by: Wilson Beebe <[email protected]>
1 parent 6a2bd1b commit b652f7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nested_pandas/series/ext_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ def num_chunks(self) -> int:
651651
def get_list_index(self) -> np.ndarray:
652652
"""Keys mapping values to lists"""
653653
if len(self) == 0:
654-
# Since we have no list offests, return an empty array
654+
# Since we have no list offsets, return an empty array
655655
return np.array([], dtype=int)
656656
list_index = np.arange(len(self))
657657
return np.repeat(list_index, np.diff(self.list_offsets))

0 commit comments

Comments
 (0)