Browse Source

Fix import sorting in test_query_method.py

- Resolve ruff linting error for import organization
- Ensure compliance with FastAPI code style guidelines
pull/13948/head
yogishhg9964 4 days ago
parent
commit
5576bccc85
  1. 5
      tests/test_query_method.py

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

Loading…
Cancel
Save