mirror of https://github.com/tiangolo/fastapi.git
🐛 Fix app.extra type annotation (#1659)
Co-authored-by: bar.harel <bar.harel@biocatch.com>
This commit is contained in:
parent
306ec8de04
commit
f1c5330b65
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue