From 454ccb42b55d24f1f20569cbb74f4dfc81fa236e Mon Sep 17 00:00:00 2001 From: Luke Manley Date: Thu, 9 Jan 2025 06:49:28 -0500 Subject: [PATCH] mypy --- py-polars/tests/unit/operations/test_join_asof.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/py-polars/tests/unit/operations/test_join_asof.py b/py-polars/tests/unit/operations/test_join_asof.py index 2c81a2ece87..85eb4f4c2d8 100644 --- a/py-polars/tests/unit/operations/test_join_asof.py +++ b/py-polars/tests/unit/operations/test_join_asof.py @@ -269,7 +269,10 @@ def test_join_asof_tolerance() -> None: ]: with pytest.raises(pl.exceptions.PolarsError, match=match): df_trades.join_asof( - df_quotes, on="time", by="stock", tolerance=invalid_tolerance + df_quotes, + on="time", + by="stock", + tolerance=invalid_tolerance, # type: ignore[arg-type] )