From 8e906128d1896481088c7a0f5cb7bc1b6d18f955 Mon Sep 17 00:00:00 2001 From: ritchie Date: Thu, 9 May 2024 12:47:35 +0200 Subject: [PATCH] fix doctest --- py-polars/polars/series/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/polars/series/series.py b/py-polars/polars/series/series.py index ee6734f6c42f..4a9ebf751240 100644 --- a/py-polars/polars/series/series.py +++ b/py-polars/polars/series/series.py @@ -2902,7 +2902,7 @@ def chunk_lengths(self) -> list[int]: Concatenate Series with rechunk = True - >>> pl.concat([s, s2]).chunk_lengths() + >>> pl.concat([s, s2], rechunk=True).chunk_lengths() [6] Concatenate Series with rechunk = False