From e267cd41cb31da940f58800e3110619f8f104958 Mon Sep 17 00:00:00 2001 From: Abhishek Biswas Date: Wed, 22 Oct 2025 20:24:22 +0530 Subject: [PATCH] Update test_forms_empty_string_default_13533.py --- tests/test_forms_empty_string_default_13533.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_forms_empty_string_default_13533.py b/tests/test_forms_empty_string_default_13533.py index 4478b494d..98edaccb0 100644 --- a/tests/test_forms_empty_string_default_13533.py +++ b/tests/test_forms_empty_string_default_13533.py @@ -7,7 +7,9 @@ This test verifies that empty strings in form fields are correctly handled: - This applies to both x-www-form-urlencoded and multipart/form-data """ -from typing import Annotated, Optional +from typing import Optional + +from typing_extensions import Annotated from fastapi import FastAPI, File, Form from fastapi.testclient import TestClient