From 420c0d99b210816e89a01c041354d322424e2137 Mon Sep 17 00:00:00 2001 From: Alisa Petrova <60570090+sn0rkmaiden@users.noreply.github.com> Date: Thu, 14 Nov 2024 09:55:35 +0300 Subject: [PATCH] fix(python): Fixed typo in file lazy.py (#19769) --- py-polars/polars/functions/lazy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/polars/functions/lazy.py b/py-polars/polars/functions/lazy.py index dfd3f607791c..30185cc6a586 100644 --- a/py-polars/polars/functions/lazy.py +++ b/py-polars/polars/functions/lazy.py @@ -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]` """