Skip to content

Commit 65be7df

Browse files
committed
Remove warning
1 parent 1dd6d0b commit 65be7df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py-polars/tests/unit/test_errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ def test_invalid_is_in_dtypes(
659659
)
660660
assert len(records) == len(warnings)
661661
for record, expected_warning in zip(records, warnings):
662-
assert record.category == expected_warning[0] # warning type
662+
assert record.category == expected_warning[0] # type: ignore[comparison-overlap]
663663
assert (
664664
record.message.args[0] == expected_warning[1] # type: ignore[union-attr]
665665
)

0 commit comments

Comments
 (0)