From 4eada92883e97ea3d01ce716abfa34079c691d84 Mon Sep 17 00:00:00 2001 From: James Curtin Date: Thu, 29 Jul 2021 11:30:18 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Import=20and=20re-export=20data=20s?= =?UTF-8?q?tructures=20from=20Starlette,=20used=20by=20Request=20propertie?= =?UTF-8?q?s,=20on=20`fastapi.datastructures`=20(#1872)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sebastián Ramírez --- fastapi/datastructures.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fastapi/datastructures.py b/fastapi/datastructures.py index 6a44a7df4..b13171287 100644 --- a/fastapi/datastructures.py +++ b/fastapi/datastructures.py @@ -1,5 +1,10 @@ from typing import Any, Callable, Iterable, Type, TypeVar +from starlette.datastructures import URL as URL # noqa: F401 +from starlette.datastructures import Address as Address # noqa: F401 +from starlette.datastructures import FormData as FormData # noqa: F401 +from starlette.datastructures import Headers as Headers # noqa: F401 +from starlette.datastructures import QueryParams as QueryParams # noqa: F401 from starlette.datastructures import State as State # noqa: F401 from starlette.datastructures import UploadFile as StarletteUploadFile