Skip to content

Commit c4fa6fd

Browse files
committed
fix dict keys
1 parent 77c9dc8 commit c4fa6fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/axiomatic/axtract/axtract_report.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ def create_report(report_data: EquationExtractionResponse, report_path: str = ".
247247
for symbol in eq.latex_symbols:
248248
html_content += f"""
249249
<tr>
250-
<td>\\({symbol.key}\\)</td>
251-
<td>{symbol.value}</td>
250+
<td>\\({symbol["key"]}\\)</td>
251+
<td>{symbol["value"]}</td>
252252
</tr>
253253
"""
254254

0 commit comments

Comments
 (0)