From 243bbd85e113402c9dc5f6e255747756576fc4a3 Mon Sep 17 00:00:00 2001 From: Mike Ounsworth Date: Mon, 4 Nov 2024 13:26:50 -0600 Subject: [PATCH] Adding a description to the top table --- src/pqc_report_writer_common.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pqc_report_writer_common.py b/src/pqc_report_writer_common.py index 699e07a..d2fbc85 100644 --- a/src/pqc_report_writer_common.py +++ b/src/pqc_report_writer_common.py @@ -235,7 +235,7 @@ def main(): md_file.new_paragraph() md_file.new_header(level=1, title=f'Algorithms Submitted') - md_file.new_paragraph(text="✅ = passing all verifiers
◒ = passing some verifiers
⚪︎ = not passing any verifiers
") + md_file.new_paragraph(text="✅ = passing all verifiers
◒ = passing some verifiers
⚪︎ = not passing any verifiers
Columns represent producers who submitted artifacts. Verifiers are not listed in this table, but are listed in the broken-out tables below.
") md_file.new_paragraph() _submittedAlgsList.sort() @@ -254,8 +254,6 @@ def main(): 0: did not pass any verifiers 1: passed some verifiers 2: passed all verifiers - - Columns represent producers who submitted artifacts. Verifiers are not listed in this table, but are listed in the broken-out tables below. """ no = passedAllVerifiers(generator, alg_oid, algorithmVerificationResults) if (no == -1):