Skip to content

Commit 7a2c238

Browse files
committed
fix does_key_exist_in_hashmap
1 parent 6bf08c1 commit 7a2c238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conda_forge_tick/lazy_json_backends.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ def does_key_exist_in_hashmap(name: str, key: str) -> bool:
638638
:return: True if the key exists, False otherwise.
639639
"""
640640
backend = LAZY_JSON_BACKENDS[CF_TICK_GRAPH_DATA_PRIMARY_BACKEND]()
641-
return backend.hexists(name, name)
641+
return backend.hexists(key, name)
642642

643643

644644
@contextlib.contextmanager

0 commit comments

Comments
 (0)