Skip to content

Commit

Permalink
needs keys to pass to __getitem__
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Dec 20, 2024
1 parent bfc4e59 commit e663c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -3071,7 +3071,7 @@ def _reduce_numeric_only(self, op: str):

def __getitem__(self, key):
return self.obj[key].groupby(
by=self.grouping,
by=self.grouping.keys,
dropna=self._dropna,
sort=self._sort,
group_keys=self._group_keys,
Expand Down

0 comments on commit e663c01

Please sign in to comment.