From 3ef7942038b9ff25fe0cdf0adb3a1b1066f3cfa6 Mon Sep 17 00:00:00 2001 From: Peter Schutt Date: Wed, 14 Feb 2024 17:53:59 +1000 Subject: [PATCH] fix: ignore explicit type error in test --- tests/test_shin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_shin.py b/tests/test_shin.py index 9ece242..7ca9ae1 100644 --- a/tests/test_shin.py +++ b/tests/test_shin.py @@ -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]