forked from ScoDoc/ScoDoc
Missing import in sco_excel
This commit is contained in:
parent
543c3759d9
commit
8e463e5971
@ -45,6 +45,7 @@ from openpyxl.worksheet.worksheet import Worksheet
|
|||||||
import app.scodoc.sco_utils as scu
|
import app.scodoc.sco_utils as scu
|
||||||
from app import log
|
from app import log
|
||||||
from app.scodoc.sco_exceptions import ScoValueError
|
from app.scodoc.sco_exceptions import ScoValueError
|
||||||
|
from app.scodoc import notesdb, sco_preferences
|
||||||
|
|
||||||
|
|
||||||
class COLORS(Enum):
|
class COLORS(Enum):
|
||||||
@ -793,7 +794,7 @@ def excel_feuille_listeappel(
|
|||||||
|
|
||||||
# ligne 3
|
# ligne 3
|
||||||
cell_2 = ws.make_cell("Enseignant :", style2)
|
cell_2 = ws.make_cell("Enseignant :", style2)
|
||||||
cell_6 = ws.make_cell(("Groupe %s" % groupname), style3)
|
cell_6 = ws.make_cell(f"Groupe {groupname}", style3)
|
||||||
ws.append_row([None, cell_2, None, None, None, None, cell_6])
|
ws.append_row([None, cell_2, None, None, None, None, cell_6])
|
||||||
|
|
||||||
# ligne 4: Avertissement pour ne pas confondre avec listes notes
|
# ligne 4: Avertissement pour ne pas confondre avec listes notes
|
||||||
|
Loading…
Reference in New Issue
Block a user