Browse Source

🐛 Fix app.extra type annotation (#1659)

Co-authored-by: bar.harel <[email protected]>
pull/1678/head
Bar Harel 5 years ago
committed by GitHub
parent
commit
f1c5330b65
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      fastapi/applications.py

2
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

Loading…
Cancel
Save