Skip to content

Commit

Permalink
Ignore mypy error on a test that is expected to error
Browse files Browse the repository at this point in the history
  • Loading branch information
etrotta committed Sep 30, 2024
1 parent 5414338 commit 5183c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ def test_config_scope() -> None:


def test_config_raise_error_if_not_exist() -> None:
with pytest.raises(AttributeError), pl.Config(i_do_not_exist=True):
with pytest.raises(AttributeError), pl.Config(i_do_not_exist=True): # type: ignore
pass


Expand Down

0 comments on commit 5183c13

Please sign in to comment.