From 78bdb155d7430529a3b81ab0707a8559b24b35d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9r=C3=A9nice=20Batut?= Date: Wed, 4 Dec 2024 12:02:38 +0100 Subject: [PATCH] Fix tool IDs for CI (#240) --- sources/bin/shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/bin/shared.py b/sources/bin/shared.py index a804502a..21913be9 100644 --- a/sources/bin/shared.py +++ b/sources/bin/shared.py @@ -83,7 +83,7 @@ def read_suite_per_tool_id(tool_fp: str) -> Dict: tool_suites = load_json(tool_fp) tools = {} for suite in tool_suites: - for tool in suite["Suite ID"]: + for tool in suite["Tool IDs"]: tools[tool] = { "Suite ID": suite["Suite ID"], "Suite owner": suite["Suite owner"],