From 24c125ad79a9d23e83fefc96612a192fba634f70 Mon Sep 17 00:00:00 2001 From: dangotbanned <125183946+dangotbanned@users.noreply.github.com> Date: Thu, 16 May 2024 10:57:24 +0100 Subject: [PATCH] fix(python): remove unused ignore arg-type --- py-polars/polars/lazyframe/frame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/polars/lazyframe/frame.py b/py-polars/polars/lazyframe/frame.py index b5a519a324620..fdc847a94fc26 100644 --- a/py-polars/polars/lazyframe/frame.py +++ b/py-polars/polars/lazyframe/frame.py @@ -2798,7 +2798,7 @@ def filter( elif p is True: continue # no-op; matches all rows if _is_generator(p): - p = tuple(p) # type: ignore[arg-type] + p = tuple(p) if is_bool_sequence(p, include_series=True): boolean_masks.append(pl.Series(p, dtype=Boolean)) elif (