Skip to content

Commit

Permalink
fix: check in the mech tools as the store might be empty
Browse files Browse the repository at this point in the history
[no ci]

(cherry picked from commit da03174)
  • Loading branch information
Adamantios committed Nov 12, 2024
1 parent 14a07cd commit 3553b6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def _update_accuracy_store(self) -> None:
# update the accuracy store using the latest accuracy information (only entered during the first period)
for row in reader:
tool = row[self.acc_info_fields.tool]
if tool not in accuracy_store.keys():
if tool not in self.mech_tools:
continue

# overwrite local with global information (naturally, no global information is available for pending)
Expand Down

0 comments on commit 3553b6e

Please sign in to comment.