We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be52cfb commit 4e7ebbcCopy full SHA for 4e7ebbc
1 file changed
pytest_demo/self_healing/locator_store.py
@@ -58,8 +58,8 @@ def _resolve_file_for_key(key: str, override: Path | None = None) -> Path:
58
if override is not None:
59
return override
60
61
- if mapped := KEY_TO_FILE.get(key):
62
- return mapped
+ if mapped_path := KEY_TO_FILE.get(key):
+ return mapped_path
63
64
for path in _existing_locator_files():
65
if key in _read_json(path):
0 commit comments