Skip to content

Commit 4e7ebbc

Browse files
committed
Update locator_store.py
1 parent be52cfb commit 4e7ebbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pytest_demo/self_healing/locator_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ def _resolve_file_for_key(key: str, override: Path | None = None) -> Path:
5858
if override is not None:
5959
return override
6060

61-
if mapped := KEY_TO_FILE.get(key):
62-
return mapped
61+
if mapped_path := KEY_TO_FILE.get(key):
62+
return mapped_path
6363

6464
for path in _existing_locator_files():
6565
if key in _read_json(path):

0 commit comments

Comments
 (0)