From 3e2202eeb0317e79fda1ad3db83def0674eda26b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Tue, 17 Mar 2026 23:30:25 +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_tutorial/test_path_params/test_tutorial006.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_tutorial/test_path_params/test_tutorial006.py b/tests/test_tutorial/test_path_params/test_tutorial006.py index 008822d48e..e1b5ca939a 100644 --- a/tests/test_tutorial/test_path_params/test_tutorial006.py +++ b/tests/test_tutorial/test_path_params/test_tutorial006.py @@ -1,11 +1,10 @@ -from fastapi import FastAPI, Path +from fastapi import FastAPI from fastapi.testclient import TestClient app = FastAPI() from docs_src.path_params.tutorial006_py310 import app - client = TestClient(app)