Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemanley committed Jan 9, 2025
1 parent 3cd5960 commit 454ccb4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion py-polars/tests/unit/operations/test_join_asof.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
)


Expand Down

0 comments on commit 454ccb4

Please sign in to comment.