mirror of https://github.com/tiangolo/fastapi.git
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:
parent
71c441e471
commit
5576bccc85
|
|
@ -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…
Reference in New Issue