From 5576bccc8563d396d43a4d85a053923575880525 Mon Sep 17 00:00:00 2001 From: yogishhg9964 Date: Wed, 30 Jul 2025 12:03:34 +0530 Subject: [PATCH] Fix import sorting in test_query_method.py - Resolve ruff linting error for import organization - Ensure compliance with FastAPI code style guidelines --- tests/test_query_method.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_query_method.py b/tests/test_query_method.py index f1f4fae39..3741fcbf3 100644 --- a/tests/test_query_method.py +++ b/tests/test_query_method.py @@ -7,10 +7,11 @@ This test file follows the FastAPI test patterns and should be compatible with the existing test suite. """ -from fastapi import FastAPI, Depends +from typing import List, Optional + +from fastapi import Depends, FastAPI from fastapi.testclient import TestClient from pydantic import BaseModel -from typing import List, Optional def test_query_method_basic():