Coquilles

This commit is contained in:
Cléo Baras 2024-02-27 16:35:36 +01:00
parent 35a20c3307
commit 5ea65433be
2 changed files with 3 additions and 2 deletions

View File

@ -773,7 +773,8 @@ def convert_colonnes_to_multiindex(df):
colonnes_verbose = []
for col in colonnes:
if col[0] in pe_rcs.TYPES_RCS:
col_verbose = [pe_rcs.TYPES_RCS[col[0]]] + list(col[1:])
descr = pe_rcs.get_descr_rcs(col[0])
col_verbose = [descr] + list(col[1:])
col_verbose = tuple(col_verbose)
else:
col_verbose = col

View File

@ -54,7 +54,7 @@ TYPES_RCS = {
},
"3A": {
"aggregat": ["S5", "S6"],
"descr": "3ème année (S5+S6)",
"descr": "BUT3 (S5+S6)",
},
"5S": {
"aggregat": ["S1", "S2", "S3", "S4", "S5"],