Skip to content

Commit

Permalink
Add comment pointing out new upstream groupby behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbluca committed May 10, 2022
1 parent 9d1a3c1 commit 27331a2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/dask_cudf/dask_cudf/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ def wrapper(*args, **kwargs):
gb = args[0]
if _groupby_supported(gb):
return func(*args, **kwargs)
# note that we use upstream Dask's default kwargs for this call if
# none are specified; this shouldn't be an issue as those defaults are
# consistent with dask-cudf
return getattr(super(type(gb), gb), func.__name__)(*args[1:], **kwargs)

return wrapper
Expand Down

0 comments on commit 27331a2

Please sign in to comment.