From 58689396da6e6eaec19075cf69e55f0eaf20aef8 Mon Sep 17 00:00:00 2001 From: Alexander Beedie Date: Fri, 16 Feb 2024 08:08:51 +0000 Subject: [PATCH] typing lint --- py-polars/polars/utils/udfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/polars/utils/udfs.py b/py-polars/polars/utils/udfs.py index c7fa2d4b19475..46c9850c77a3c 100644 --- a/py-polars/polars/utils/udfs.py +++ b/py-polars/polars/utils/udfs.py @@ -658,7 +658,7 @@ def _matches( idx: int, *, opnames: list[AbstractSet[str]], - argvals: list[AbstractSet[Any] | dict[Any, Any]] | None, + argvals: list[AbstractSet[Any] | dict[Any, Any] | None] | None, ) -> list[Instruction]: """ Check if a sequence of Instructions matches the specified ops/argvals.