From 4e76e4d6acf64ed12847d9869da6ffaaea77caae Mon Sep 17 00:00:00 2001 From: Benedikt Bartscher Date: Sun, 4 Aug 2024 21:43:07 +0200 Subject: [PATCH] fix type ignore comment --- tests/integration/test_minified_states.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_minified_states.py b/tests/integration/test_minified_states.py index eb3efc8ec..64c8469bc 100644 --- a/tests/integration/test_minified_states.py +++ b/tests/integration/test_minified_states.py @@ -93,7 +93,7 @@ def test_app( with app_harness_env.create( root=tmp_path_factory.mktemp(name), app_name=name, - app_source=partial(TestApp, minify=minify_state_env), # pyright: ignore[reportArgumentType] + app_source=partial(TestApp, minify=minify_state_env), # type: ignore ) as harness: yield harness