diff options
| author | arcadia-devtools <[email protected]> | 2022-03-14 14:36:14 +0300 |
|---|---|---|
| committer | arcadia-devtools <[email protected]> | 2022-03-14 14:36:14 +0300 |
| commit | e55fb55efda71cea0cd9c5fdafa41af406aef5bf (patch) | |
| tree | 664dd8ed9a31584f9373593983273c9de2f13e7b /contrib/python/pytest/py3/_pytest/monkeypatch.py | |
| parent | 95e3624686fdca2887aa10594ee976cfddd32e38 (diff) | |
intermediate changes
ref:8379e897e1f4fa0d71bb778a7c8bc68cb5e2f5ea
Diffstat (limited to 'contrib/python/pytest/py3/_pytest/monkeypatch.py')
| -rw-r--r-- | contrib/python/pytest/py3/_pytest/monkeypatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/pytest/py3/_pytest/monkeypatch.py b/contrib/python/pytest/py3/_pytest/monkeypatch.py index 31f95a95ab2..91d590fb3df 100644 --- a/contrib/python/pytest/py3/_pytest/monkeypatch.py +++ b/contrib/python/pytest/py3/_pytest/monkeypatch.py @@ -55,7 +55,7 @@ def resolve(name: str) -> object: parts = name.split(".") used = parts.pop(0) - found = __import__(used) + found: object = __import__(used) for part in parts: used += "." + part try: |
