diff --git a/tests/test_form_default.py b/tests/test_form_default.py index f31c92ecf..97ff47463 100644 --- a/tests/test_form_default.py +++ b/tests/test_form_default.py @@ -1,7 +1,8 @@ -from typing_extensions import Annotated, Optional +from typing import Optional from fastapi import FastAPI, File, Form from starlette.testclient import TestClient +from typing_extensions import Annotated app = FastAPI() client = TestClient(app)