Fix empty td tags

This commit is contained in:
Felix Blanke 2023-08-28 01:04:35 +02:00
parent 4e43916fb1
commit 3bb4f432e4

View File

@ -183,7 +183,7 @@ def tables(
" <td>Gesamt</td>", " <td>Gesamt</td>",
] ]
for i in range(len(df.columns) - 2): for i in range(len(df.columns) - 2):
tfoot.append(" <td/>") tfoot.append(" <td></td>")
tfoot.extend( tfoot.extend(
[ [
f" <td>{df['Digitale Befragung'].sum()}</td>", f" <td>{df['Digitale Befragung'].sum()}</td>",