mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
fix undefined name in flask stub (#2811)
This commit is contained in:
committed by
Sebastian Rittau
parent
2aee28cb6f
commit
b5897d5643
2
third_party/2and3/flask/app.pyi
vendored
2
third_party/2and3/flask/app.pyi
vendored
@@ -88,7 +88,7 @@ class Flask(_PackageBoundObject):
|
||||
env: Any = ...
|
||||
debug: Any = ...
|
||||
def run(self, host: Optional[str] = ..., port: Optional[int] = ..., debug: Optional[bool] = ..., load_dotenv: bool = ..., **options: Any) -> None: ...
|
||||
def test_client(self, use_cookies: bool = ..., **kwargs: Any) -> testing.FlaskClient: ...
|
||||
def test_client(self, use_cookies: bool = ..., **kwargs: Any) -> FlaskClient: ...
|
||||
def test_cli_runner(self, **kwargs: Any): ...
|
||||
def open_session(self, request: Any): ...
|
||||
def save_session(self, session: Any, response: Any): ...
|
||||
|
||||
Reference in New Issue
Block a user