Update app.py
Browse files
app.py
CHANGED
@@ -287,8 +287,8 @@ class EvaluationGymnique:
|
|
287 |
run.font.size = Pt(12)
|
288 |
|
289 |
# Ajouter plus d'espace avant la liste des correcteurs
|
290 |
-
self.document.add_paragraph().space_after = Pt(
|
291 |
-
self.document.add_paragraph().space_after = Pt(
|
292 |
|
293 |
def ajouter_lignes_correcteurs(self):
|
294 |
para_intro = self.document.add_paragraph()
|
@@ -393,4 +393,4 @@ def index():
|
|
393 |
return render_template("index.html")
|
394 |
|
395 |
if __name__ == "__main__":
|
396 |
-
app.run(debug=True)
|
|
|
287 |
run.font.size = Pt(12)
|
288 |
|
289 |
# Ajouter plus d'espace avant la liste des correcteurs
|
290 |
+
self.document.add_paragraph().space_after = Pt(10)
|
291 |
+
self.document.add_paragraph().space_after = Pt(10)
|
292 |
|
293 |
def ajouter_lignes_correcteurs(self):
|
294 |
para_intro = self.document.add_paragraph()
|
|
|
393 |
return render_template("index.html")
|
394 |
|
395 |
if __name__ == "__main__":
|
396 |
+
app.run(debug=True)
|