Skip to content

Commit 6054c90

Browse files
committed
Fix typo
1 parent 4b2da72 commit 6054c90

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

add_results_summary.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,7 @@ def get_table_header(division, category):
223223
<tr>"""
224224

225225
for i in range(num_scenarios):
226-
html_table_head += f"""
227-
{accuracy_achieved_header}
226+
html_table_head += f"""{accuracy_achieved_header}
228227
<td>Metric</td>
229228
<td>Performance</td>"""
230229

@@ -348,7 +347,7 @@ def get_table_header(division, category):
348347
html_table += f"""<td>{data[model][scenario]["Accuracy"]}</td>"""
349348
html_table += f"""<td>{data[model][scenario]["Performance_Units"]}</td> <td>{data[model][scenario]["Performance_Result"]}</td>"""
350349
else:
351-
if "MultiStream" in required_scenarios_edge: #must be open
350+
if "SingleStream" in required_scenarios_edge: #must be open
352351
html_table += scenario_missing_td
353352
else:
354353
html_table += f"""<td colspan="{colspan}"> N/A </td>"""

0 commit comments

Comments
 (0)