Sina Media Lab commited on
Commit
2e0828b
·
1 Parent(s): 8dd36e6
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -72,7 +72,7 @@ def generate_pdf_report():
72
  pdf.multi_cell(0, 10, f"Explanation: {explanation}")
73
  pdf.ln(5)
74
  pdf.multi_cell(0, 10, "Step-by-Step Solution:")
75
- for step in step_by-step_solution:
76
  pdf.multi_cell(0, 10, step)
77
  pdf.ln(10)
78
 
 
72
  pdf.multi_cell(0, 10, f"Explanation: {explanation}")
73
  pdf.ln(5)
74
  pdf.multi_cell(0, 10, "Step-by-Step Solution:")
75
+ for step in step_by_step_solution: # Corrected variable name
76
  pdf.multi_cell(0, 10, step)
77
  pdf.ln(10)
78