Skip to content

Commit

Permalink
Add kwargs to dask_cudf groupby.agg
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Aug 12, 2024
1 parent aa819c5 commit 3f3f6da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/dask_cudf/dask_cudf/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def last(self, split_every=None, split_out=1):
@_deprecate_shuffle_kwarg
@_dask_cudf_performance_tracking
def aggregate(
self, arg, split_every=None, split_out=1, shuffle_method=None
self, arg, split_every=None, split_out=1, shuffle_method=None, **kwargs
):
if arg == "size":
return self.size()
Expand Down Expand Up @@ -341,7 +341,7 @@ def last(self, split_every=None, split_out=1):
@_deprecate_shuffle_kwarg
@_dask_cudf_performance_tracking
def aggregate(
self, arg, split_every=None, split_out=1, shuffle_method=None
self, arg, split_every=None, split_out=1, shuffle_method=None, **kwargs
):
if arg == "size":
return self.size()
Expand Down

0 comments on commit 3f3f6da

Please sign in to comment.