Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into zip
Browse files Browse the repository at this point in the history
  • Loading branch information
DeaMariaLeon committed May 26, 2024
2 parents d2891f8 + 04054b6 commit 18b90ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion narwhals/_pandas_like/group_by.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def func(df: Any) -> Any:

if parse_version(pd.__version__) < parse_version("2.2.0"): # pragma: no cover
result_complex = grouped.apply(func)
else: # pragma: no cover
else:
result_complex = grouped.apply(func, include_groups=False)
else: # pragma: no cover
result_complex = grouped.apply(func)
Expand Down

0 comments on commit 18b90ca

Please sign in to comment.