Skip to content

Commit

Permalink
fix: ignore explicit type error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
peterschutt committed Feb 14, 2024
1 parent dbcde85 commit 3ef7942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_shin.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ def test_full_output_get_item_interface() -> None:
assert full_output["delta"] == 0.1
assert full_output["z"] == 0.5
with pytest.raises(KeyError):
full_output["foo"]
full_output["foo"] # type: ignore[call-overload]

0 comments on commit 3ef7942

Please sign in to comment.