Skip to content

Commit

Permalink
Making the python tolerant of multiple submissions of the same alg
Browse files Browse the repository at this point in the history
  • Loading branch information
ounsworth committed Jul 22, 2024
1 parent a0a5adb commit 3980de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pqc_report_writer_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def main():
print(f'Multiple results for {alg_oid}: {generator}', file=sys.stderr)
relevant_avr = relevant_avrs[0]

else if len(relevant_avrs) == 0:
elif len(relevant_avrs) == 0:
# synthesize a result
relevant_avr = AlgorithmVerificationResult(generator, verifier, alg_oid, None)
else:
Expand Down

0 comments on commit 3980de1

Please sign in to comment.