From 2eb2fcbd7611076a063f96f0435a63e4e2d166c2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 22 Jul 2025 17:25:57 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_endpoint_with_async_class_decorator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_endpoint_with_async_class_decorator.py b/tests/test_endpoint_with_async_class_decorator.py index da322ef66..a5e225103 100644 --- a/tests/test_endpoint_with_async_class_decorator.py +++ b/tests/test_endpoint_with_async_class_decorator.py @@ -15,11 +15,13 @@ class SomeDecorator: app = FastAPI() + @app.get("/") @SomeDecorator async def route1(): return {"working": True} + client = TestClient(app)