From 7a2c23880c03199412903dbc285712b732a300ab Mon Sep 17 00:00:00 2001 From: Yannik Tausch Date: Mon, 25 Nov 2024 13:09:24 +0100 Subject: [PATCH] fix does_key_exist_in_hashmap --- conda_forge_tick/lazy_json_backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_forge_tick/lazy_json_backends.py b/conda_forge_tick/lazy_json_backends.py index aac4e92229..23e67e16e7 100644 --- a/conda_forge_tick/lazy_json_backends.py +++ b/conda_forge_tick/lazy_json_backends.py @@ -638,7 +638,7 @@ def does_key_exist_in_hashmap(name: str, key: str) -> bool: :return: True if the key exists, False otherwise. """ backend = LAZY_JSON_BACKENDS[CF_TICK_GRAPH_DATA_PRIMARY_BACKEND]() - return backend.hexists(name, name) + return backend.hexists(key, name) @contextlib.contextmanager