From f1c5330b6526b706b1dc2d9b3301a3ec401ddca4 Mon Sep 17 00:00:00 2001 From: Bar Harel Date: Mon, 3 Aug 2020 09:43:04 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20app.extra=20type=20annotat?= =?UTF-8?q?ion=20(#1659)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: bar.harel --- fastapi/applications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/applications.py b/fastapi/applications.py index d5b70e116..ab895d657 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -51,7 +51,7 @@ class FastAPI(Starlette): openapi_prefix: str = "", root_path: str = "", root_path_in_servers: bool = True, - **extra: Dict[str, Any], + **extra: Any, ) -> None: self.default_response_class = default_response_class self._debug = debug