Merge pull request #4269 from Jalkhov/patch-1

Fix grammatical error
This commit is contained in:
David Lord 2021-10-01 10:07:27 -07:00 committed by GitHub
commit b4094b35ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -366,7 +366,8 @@ class Flask(Scaffold):
#: .. versionadded:: 1.1.0 #: .. versionadded:: 1.1.0
url_map_class = Map url_map_class = Map
#: the test client that is used with when `test_client` is used. #: The :meth:`test_client` method creates an instance of this test
#: client class. Defaults to :class:`~flask.testing.FlaskClient`.
#: #:
#: .. versionadded:: 0.7 #: .. versionadded:: 0.7
test_client_class: t.Optional[t.Type["FlaskClient"]] = None test_client_class: t.Optional[t.Type["FlaskClient"]] = None