From 5b1362a6893e7ce52d4973e6c4ca873c3c065d8b Mon Sep 17 00:00:00 2001 From: I531058 Date: Wed, 1 Oct 2025 11:57:03 +0200 Subject: [PATCH] fix: Correct import order for type annotations in test_property_names.py --- tests/test_property_names.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_property_names.py b/tests/test_property_names.py index 27cca9f1e..058b69f5c 100644 --- a/tests/test_property_names.py +++ b/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