From 0ee2cba299fe59895ba1ca76abb6d47ac57b3c4a Mon Sep 17 00:00:00 2001 From: ATIG_Badr_Eddine Date: Mon, 22 Jul 2024 19:43:45 +0200 Subject: [PATCH] docs(python): Fix punctuations --- py-polars/polars/dataframe/frame.py | 4 ++-- py-polars/polars/lazyframe/frame.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/py-polars/polars/dataframe/frame.py b/py-polars/polars/dataframe/frame.py index 1f014a185f570..52cffc0e7cda0 100644 --- a/py-polars/polars/dataframe/frame.py +++ b/py-polars/polars/dataframe/frame.py @@ -4490,8 +4490,8 @@ def filter( │ 3 ┆ 8 ┆ c │ └─────┴─────┴─────┘ - Notice how the row with `None` values is filtered out, in order to keep the - same behavior as pandas, Use: + Notice how the row with `None` values is filtered out. In order to keep the + same behavior as pandas, use: >>> df.filter( ... (pl.col("foo") != pl.col("bar")) diff --git a/py-polars/polars/lazyframe/frame.py b/py-polars/polars/lazyframe/frame.py index c7c103080ef9a..ae8c0dccedd7c 100644 --- a/py-polars/polars/lazyframe/frame.py +++ b/py-polars/polars/lazyframe/frame.py @@ -3092,8 +3092,8 @@ def filter( │ 3 ┆ 8 ┆ c │ └─────┴─────┴─────┘ - Notice how the row with `None` values is filtered out, - in order to keep the same behavior as pandas, Use: + Notice how the row with `None` values is filtered out. + In order to keep the same behavior as pandas, use: >>> lf.filter( ... (pl.col("foo") != pl.col("bar"))