missing ;

This commit is contained in:
Emmanuel Viennet 2022-02-12 15:05:53 +01:00
parent 02264c3fbb
commit 2610d746b9
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ def ue_colors_css(formation_id: int, semestre_idx: int):
":root{\n"
+ "\n".join(
[
f"--color-UE{semestre_idx}.{ue_idx+1}: {ue.color}"
f"--color-UE{semestre_idx}.{ue_idx+1}: {ue.color};"
for ue_idx, ue in enumerate(ues)
if ue.color
]