fix undefined name in flask stub (#2811)

This commit is contained in:
Jelle Zijlstra
2019-02-23 01:28:03 -08:00
committed by Sebastian Rittau
parent 2aee28cb6f
commit b5897d5643

View File

@@ -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): ...