From 4f9c3a1f652ef617d25f2e1556bd45cd93c9052f Mon Sep 17 00:00:00 2001 From: Dean MacGregor Date: Thu, 1 Aug 2024 15:12:14 -0400 Subject: [PATCH] docs: update map_batches docstring --- 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