diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2025-01-16 19:09:30 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2025-01-16 19:38:51 +0300 |
commit | 7a23ad1fa2a5561a3575177d7240d8a1aa499718 (patch) | |
tree | b4932bad31f595149e7a42e88cf729919995d735 /contrib/python/Flask/py3/flask/wrappers.py | |
parent | fbb15f5ab8a61fc7c50500e2757af0b47174d825 (diff) | |
download | ydb-7a23ad1fa2a5561a3575177d7240d8a1aa499718.tar.gz |
Intermediate changes
commit_hash:ae9e37c897fc6d514389f7089184df33bf781005
Diffstat (limited to 'contrib/python/Flask/py3/flask/wrappers.py')
-rw-r--r-- | contrib/python/Flask/py3/flask/wrappers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/python/Flask/py3/flask/wrappers.py b/contrib/python/Flask/py3/flask/wrappers.py index 7153876b8d..e36a72cb47 100644 --- a/contrib/python/Flask/py3/flask/wrappers.py +++ b/contrib/python/Flask/py3/flask/wrappers.py @@ -8,7 +8,7 @@ from . import json from .globals import current_app from .helpers import _split_blueprint_path -if t.TYPE_CHECKING: +if t.TYPE_CHECKING: # pragma: no cover from werkzeug.routing import Rule @@ -25,7 +25,7 @@ class Request(RequestBase): specific ones. """ - json_module = json + json_module: t.Any = json #: The internal URL rule that matched the request. This can be #: useful to inspect which methods are allowed for the URL from |