🎨 Auto format

This commit is contained in:
pre-commit-ci-lite[bot] 2026-02-11 00:19:57 +00:00 committed by GitHub
parent c5625da44a
commit 7da6f25174
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -9,10 +9,9 @@ We need to ensure new changes preserve validator functionality.
from typing import Annotated
from fastapi import FastAPI, Query, Body
from fastapi import Body, FastAPI, Query
from fastapi.testclient import TestClient
from pydantic import AfterValidator, BeforeValidator, ValidationError
import pytest
from pydantic import AfterValidator, BeforeValidator
def validate_positive(v: int) -> int: