Skip to content

Commit

Permalink
fix(python): Fixed typo in file lazy.py (#19769)
Browse files Browse the repository at this point in the history
  • Loading branch information
sn0rkmaiden authored Nov 14, 2024
1 parent 9f79100 commit 420c0d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/polars/functions/lazy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ def map_groups(
The output for group `1` can be understood as follows:
- group `1` contains Series `'a': [1, 3]` and `'b': [4, 5]`
- group `1` contains Series `'a': [1, 3]` and `'b': [5, 6]`
- applying the function to those lists of Series, one gets the output
`[1 / 4 + 5, 3 / 4 + 6]`, i.e. `[5.25, 6.75]`
"""
Expand Down

0 comments on commit 420c0d9

Please sign in to comment.