update dependencies

This commit is contained in:
David Lord 2023-02-16 06:27:25 -08:00
parent 6a392afbb6
commit c4c7f504be
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
6 changed files with 47 additions and 39 deletions

View file

@ -1248,7 +1248,7 @@ class Flask(Scaffold):
"""
cls = self.test_client_class
if cls is None:
from .testing import FlaskClient as cls # type: ignore
from .testing import FlaskClient as cls
return cls( # type: ignore
self, self.response_class, use_cookies=use_cookies, **kwargs
)
@ -1266,7 +1266,7 @@ class Flask(Scaffold):
cls = self.test_cli_runner_class
if cls is None:
from .testing import FlaskCliRunner as cls # type: ignore
from .testing import FlaskCliRunner as cls
return cls(self, **kwargs) # type: ignore