Spaces:
Runtime error
Runtime error
Update utils.py
Browse files
utils.py
CHANGED
@@ -814,6 +814,8 @@ def erstellePdf(file_path_download, ueberschrift, dic_history):
|
|
814 |
#style für Trennlinie
|
815 |
line_style = ParagraphStyle('LineStyle', fontSize=4, leading=6, borderPadding=0,
|
816 |
spaceBefore=0, spaceAfter=0, textColor='black')
|
|
|
|
|
817 |
#Feststehende Überschriften erzeugen
|
818 |
# Chat-Überschrift
|
819 |
title = Paragraph(ueberschrift, styles['Title'])
|
@@ -829,7 +831,7 @@ def erstellePdf(file_path_download, ueberschrift, dic_history):
|
|
829 |
# Einen Abstand hinzufügen (optional)
|
830 |
elements.append(Spacer(1, 2*mm))
|
831 |
elements.append(headline_assi)
|
832 |
-
element_check = erkennen_und_formatieren_von_aufzaehlungen(assi,
|
833 |
#p = Paragraph(assi, styles['NewStyle'])
|
834 |
elements.append(element_check)
|
835 |
# Einen Abstand hinzufügen (optional)
|
|
|
814 |
#style für Trennlinie
|
815 |
line_style = ParagraphStyle('LineStyle', fontSize=4, leading=6, borderPadding=0,
|
816 |
spaceBefore=0, spaceAfter=0, textColor='black')
|
817 |
+
list_style = getSampleStyleSheet()
|
818 |
+
|
819 |
#Feststehende Überschriften erzeugen
|
820 |
# Chat-Überschrift
|
821 |
title = Paragraph(ueberschrift, styles['Title'])
|
|
|
831 |
# Einen Abstand hinzufügen (optional)
|
832 |
elements.append(Spacer(1, 2*mm))
|
833 |
elements.append(headline_assi)
|
834 |
+
element_check = erkennen_und_formatieren_von_aufzaehlungen(assi,list_style)
|
835 |
#p = Paragraph(assi, styles['NewStyle'])
|
836 |
elements.append(element_check)
|
837 |
# Einen Abstand hinzufügen (optional)
|