mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-06-16 04:26:26 +08:00
Flask.root_path cannot be None (#4319)
Extension of #2792 (see #2791). See [implementation](https://github.com/pallets/flask/blob/4e854ee49687ceac90985526928d901570d3585d/src/flask/helpers.py#L959).
This commit is contained in:
Vendored
+1
-1
@@ -83,7 +83,7 @@ class Flask(_PackageBoundObject):
|
||||
session_interface: Any = ...
|
||||
import_name: str = ...
|
||||
template_folder: str = ...
|
||||
root_path: Optional[Union[str, Text]] = ...
|
||||
root_path: Union[str, Text] = ...
|
||||
static_url_path: Any = ...
|
||||
static_folder: Optional[str] = ...
|
||||
instance_path: Union[str, Text] = ...
|
||||
|
||||
Reference in New Issue
Block a user