From e564d34318ae6b9367227e1596aa340c69dc8614 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 30 Jul 2025 07:35:14 +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_query_method.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_query_method.py b/tests/test_query_method.py index dd48e55d3..fb625b295 100644 --- a/tests/test_query_method.py +++ b/tests/test_query_method.py @@ -7,15 +7,13 @@ This test file follows the FastAPI test patterns and should be compatible with the existing test suite. """ +# Ensure compatibility across Python versions from typing import List, Optional from fastapi import Depends, FastAPI from fastapi.testclient import TestClient from pydantic import BaseModel -# Ensure compatibility across Python versions -import sys - def test_query_method_basic(): app = FastAPI()