Fix import sorting in test_query_method.py

- Resolve ruff linting error for import organization
- Ensure compliance with FastAPI code style guidelines
This commit is contained in:
yogishhg9964 2025-07-30 12:03:34 +05:30
parent 71c441e471
commit 5576bccc85
1 changed files with 3 additions and 2 deletions

View File

@ -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():