From f2a5d298d51836a2dd28fac92540575d0209bac1 Mon Sep 17 00:00:00 2001 From: James Addison Date: Tue, 13 May 2025 20:10:40 +0100 Subject: [PATCH] Type-checking: remove unused mypy `type: ignore` directive --- tests/test_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_helpers.py b/tests/test_helpers.py index cbf539a..c7a3c32 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -168,7 +168,7 @@ async def test_url_for_root_path(app: Quart) -> None: async def test_stream_with_context() -> None: app = Quart(__name__) - @app.route("/") # type: ignore + @app.route("/") async def index() -> AsyncGenerator[bytes, None]: @stream_with_context async def generator() -> AsyncGenerator[bytes, None]: