Skip to content

Commit

Permalink
reference_files:ref_files - fix incorrect type
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoCampinoti94 committed Oct 17, 2023
1 parent 5dcb233 commit 0756120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acacore/reference_files/ref_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0756120

Please sign in to comment.