Skip to content

Commit

Permalink
Use CONFIDENCE dict
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed May 26, 2022
1 parent 7300b5c commit c811d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vr_address_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ def write_csv(
and int(id_vr_status.get(elem[0]).get("status", 0))
>= min_confidence
)
or (min_confidence == 0 and elem[0] not in id_vr_status),
or (min_confidence == CONFIDENCE["UNKNOWN"] and elem[0] not in id_vr_status),
id_vr.items(),
)
)
Expand Down

0 comments on commit c811d06

Please sign in to comment.