diff --git a/py-polars/polars/series/string.py b/py-polars/polars/series/string.py index faa7d02b0e62..ae80915ad8be 100644 --- a/py-polars/polars/series/string.py +++ b/py-polars/polars/series/string.py @@ -2235,10 +2235,6 @@ def normalize(self, form: UnicodeForm = "NFC") -> Series: >>> s.str.normalize("NFC") shape: (2,) Series: '' [str] - >>> s = pl.Series(["01²", "KADOKAWA"]) - >>> s.str.normalize("NFC") - shape: (2,) - Series: '' [str] [ "01²" "KADOKAWA" @@ -2246,15 +2242,6 @@ def normalize(self, form: UnicodeForm = "NFC") -> Series: >>> s.str.normalize("NFKC") shape: (2,) Series: '' [str] - [ - "012" - "KADOKAWA" - "01²" - "KADOKAWA" - ] - >>> s.str.normalize("NFKC") - shape: (2,) - Series: '' [str] [ "012" "KADOKAWA"