Update process_interview.py
Browse files- process_interview.py +1 -1
process_interview.py
CHANGED
|
@@ -581,7 +581,7 @@ def create_pdf_report(analysis_data: Dict, output_path: str, gemini_report_text:
|
|
| 581 |
if key in sections:
|
| 582 |
for line in sections[key]:
|
| 583 |
if line.strip():
|
| 584 |
-
story.append(Paragraph(line.strip().lstrip('-').strip(),
|
| 585 |
story.append(Spacer(1, 0.2*inch))
|
| 586 |
|
| 587 |
doc.build(story)
|
|
|
|
| 581 |
if key in sections:
|
| 582 |
for line in sections[key]:
|
| 583 |
if line.strip():
|
| 584 |
+
story.append(Paragraph(line.strip().lstrip('-').strip(), bullet_style if line.strip().startswith('-') else body_text))
|
| 585 |
story.append(Spacer(1, 0.2*inch))
|
| 586 |
|
| 587 |
doc.build(story)
|