Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Jan 16, 2025
1 parent 5435efd commit 14f631a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/operations/map/test_map_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,6 @@ def foo(x: pl.Series) -> pl.Series:
pl.DataFrame({"key": [0, 0, 1], "a": [None, None, None]})
.group_by("key")
.agg(pl.map_groups(exprs=["a"], function=foo)) # type: ignore[arg-type]
.sort("a"),
.sort("key"),
pl.DataFrame({"key": [0, 1], "a": [None, None]}),
)

0 comments on commit 14f631a

Please sign in to comment.