IAMTFRMZA commited on
Commit
3ee6389
·
verified ·
1 Parent(s): 70b5f49
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -103,8 +103,9 @@ if uploaded_file:
103
  # Add a title and style
104
  title = doc.add_heading('AI Assistant Report', 0)
105
  title.alignment = WD_PARAGRAPH_ALIGNMENT.CENTER # Center align the title
106
- title.bold = True
107
- title.font.size = Pt(18)
 
108
 
109
  # Add Executive Summary
110
  doc.add_heading('Executive Summary', level=1)
 
103
  # Add a title and style
104
  title = doc.add_heading('AI Assistant Report', 0)
105
  title.alignment = WD_PARAGRAPH_ALIGNMENT.CENTER # Center align the title
106
+ run = title.add_run("AI Assistant Report")
107
+ run.bold = True
108
+ run.font.size = Pt(18)
109
 
110
  # Add Executive Summary
111
  doc.add_heading('Executive Summary', level=1)