Browse Source

fix: Correct import order for type annotations in test_property_names.py

pull/14142/head
I531058 10 months ago
parent
commit
5b1362a689
Failed to extract signature
  1. 3
      tests/test_property_names.py

3
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

Loading…
Cancel
Save