From 0546fdfa9a25cb8fc78489eea683fd6effa982d7 Mon Sep 17 00:00:00 2001 From: Marshall Crumiller Date: Thu, 3 Aug 2023 17:56:01 -0400 Subject: [PATCH] Fix typing --- py-polars/tests/unit/test_lazy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/tests/unit/test_lazy.py b/py-polars/tests/unit/test_lazy.py index 3eed89252d94..3f0c954e6b7b 100644 --- a/py-polars/tests/unit/test_lazy.py +++ b/py-polars/tests/unit/test_lazy.py @@ -1473,7 +1473,7 @@ def test_compare_aggregation_between_lazy_and_eager_6904( ], ) def test_lazy_comparison_operators( - comparators: Callable[[pl.LazyFrame, pl.LazyFrame], NoReturn] + comparators: tuple[str, Callable[[pl.LazyFrame, Any], NoReturn]] ) -> None: # we cannot compare lazy frames, so all should raise a TypeError with pytest.raises(