From 07561208f583fd14e4276624e7760ae3b5311e13 Mon Sep 17 00:00:00 2001 From: Matteo Campinoti Date: Tue, 17 Oct 2023 14:28:03 +0200 Subject: [PATCH] reference_files:ref_files - fix incorrect type --- acacore/reference_files/ref_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acacore/reference_files/ref_files.py b/acacore/reference_files/ref_files.py index 64fcdef..e95a202 100644 --- a/acacore/reference_files/ref_files.py +++ b/acacore/reference_files/ref_files.py @@ -20,7 +20,7 @@ def to_re_identify() -> list[ReIdentifyModel]: if response.getcode() != 200: raise ConnectionError - re_identify_map: dict[str, str] = json.loads(response.read()) + re_identify_map: dict[str, dict[str, str]] = json.loads(response.read()) if re_identify_map is None: raise ConnectionError