From 51db3e713edc17d9f56cd1e04a863ffa5f5e363b Mon Sep 17 00:00:00 2001 From: deanm0000 <37878412+deanm0000@users.noreply.github.com> Date: Sun, 4 Aug 2024 04:22:48 -0400 Subject: [PATCH] docs: Update map_batches docstring (#18001) --- py-polars/polars/expr/expr.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/py-polars/polars/expr/expr.py b/py-polars/polars/expr/expr.py index 8419f47b696e..b8a53d30eaf2 100644 --- a/py-polars/polars/expr/expr.py +++ b/py-polars/polars/expr/expr.py @@ -4290,9 +4290,6 @@ def map_batches( A reasonable use case for `map` functions is transforming the values represented by an expression using a third-party library. - If your function returns a scalar, for example a float, use - :func:`map_to_scalar` instead. - Parameters ---------- function