From dcfc53763f3ef06728a05ee80caba3d04ba3ae36 Mon Sep 17 00:00:00 2001 From: Purushot14 Date: Thu, 13 Mar 2025 00:15:47 +0530 Subject: [PATCH] lint updated --- .../test_custom_request_and_route/test_tutorial004.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_tutorial/test_custom_request_and_route/test_tutorial004.py b/tests/test_tutorial/test_custom_request_and_route/test_tutorial004.py index 3a43ba057..ca427376b 100644 --- a/tests/test_tutorial/test_custom_request_and_route/test_tutorial004.py +++ b/tests/test_tutorial/test_custom_request_and_route/test_tutorial004.py @@ -8,6 +8,7 @@ __author__ = "prakash" __date__ = "12/03/25" from fastapi.testclient import TestClient + from docs_src.custom_api_router.tutorial001 import app client = TestClient(app) @@ -31,4 +32,4 @@ def test_route_name(): assert response.status_code == 200 response_json = response.json() assert response_json["route_name"] == "Global.Model.Item.create-item" - assert response_json["router_class"] == "AppRouter" \ No newline at end of file + assert response_json["router_class"] == "AppRouter"