From 937fcdffbeef192f8236442ed098dc768ab0696d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 02:05:29 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Auto=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_generate_unique_id_function.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_generate_unique_id_function.py b/tests/test_generate_unique_id_function.py index 3da1e1d596..1d1b22ad88 100644 --- a/tests/test_generate_unique_id_function.py +++ b/tests/test_generate_unique_id_function.py @@ -1702,7 +1702,9 @@ def test_warn_duplicate_operation_id(): def test_no_duplicate_operation_id_for_multi_method_route(): app = FastAPI() router = APIRouter() - router.add_api_route("/items/", lambda: [], methods=["POST", "DELETE"], name="items") + router.add_api_route( + "/items/", lambda: [], methods=["POST", "DELETE"], name="items" + ) app.include_router(router) client = TestClient(app)