Skip to content

Commit f050a70

Browse files
committed
mypy ignore
1 parent 6040d32 commit f050a70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/frame/invalid_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_invalid() -> None:
2020
with pytest.raises(TypeError, match="Perhaps you:"):
2121
df.select([pl.col("a")]) # type: ignore[list-item]
2222
with pytest.raises(TypeError, match="Perhaps you:"):
23-
df.select([nw.col("a").cast(pl.Int64)])
23+
df.select([nw.col("a").cast(pl.Int64)]) # type: ignore[arg-type]
2424

2525

2626
def test_native_vs_non_native() -> None:

0 commit comments

Comments
 (0)