Browse Source
fix: Correct import order for type annotations in test_property_names.py
pull/14142/head
I531058
10 months ago
Failed to extract signature
1 changed files with
2 additions and
1 deletions
-
tests/test_property_names.py
|
|
|
@ -2,7 +2,8 @@ |
|
|
|
Tests for PropertyNames constraint support in FastAPI. |
|
|
|
""" |
|
|
|
|
|
|
|
from typing import Dict, Annotated |
|
|
|
from typing import Dict |
|
|
|
from typing_extensions import Annotated |
|
|
|
from fastapi import FastAPI |
|
|
|
from fastapi.schema import PropertyNames |
|
|
|
from pydantic import BaseModel |
|
|
|
|