Update app.py
Browse files
app.py
CHANGED
@@ -119,7 +119,7 @@ def generate_pdf_report(results):
|
|
119 |
pdf.multi_cell(200, 10, txt=f"Requirement R{i}: {result['Requirement']}", align='L')
|
120 |
pdf.set_font("Arial", size=12)
|
121 |
pdf.multi_cell(200, 10, txt=f"Type: {result['Type']}", align='L')
|
122 |
-
pdf.multi_cell(200, 10, txt=f"Domain: {result['
|
123 |
pdf.multi_cell(200, 10, txt=f"Stakeholders: {result['Stakeholders']}", align='L')
|
124 |
pdf.multi_cell(200, 10, txt=f"Defects: {result['Defects']}", align='L')
|
125 |
pdf.multi_cell(200, 10, txt=f"Rewritten: {result['Rewritten']}", align='L')
|
|
|
119 |
pdf.multi_cell(200, 10, txt=f"Requirement R{i}: {result['Requirement']}", align='L')
|
120 |
pdf.set_font("Arial", size=12)
|
121 |
pdf.multi_cell(200, 10, txt=f"Type: {result['Type']}", align='L')
|
122 |
+
pdf.multi_cell(200, 10, txt=f"Domain: {result['Domain']}", align='L')
|
123 |
pdf.multi_cell(200, 10, txt=f"Stakeholders: {result['Stakeholders']}", align='L')
|
124 |
pdf.multi_cell(200, 10, txt=f"Defects: {result['Defects']}", align='L')
|
125 |
pdf.multi_cell(200, 10, txt=f"Rewritten: {result['Rewritten']}", align='L')
|