Skip to content

Commit

Permalink
Merge pull request #212 from narwhals-dev/coverage-
Browse files Browse the repository at this point in the history
coverage
  • Loading branch information
MarcoGorelli authored May 25, 2024
2 parents f65c77e + fbed74c commit 04054b6
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 04054b6

Please sign in to comment.