Skip to content
Snippets Groups Projects
Commit 8d2733db authored by Millian Poquet's avatar Millian Poquet
Browse files

moodle: update CSV column names...

parent 8bdefb8c
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,8 @@ def read_parse_participants(filename: str) -> pandas.DataFrame:
df = pandas.read_csv(filename)
column_names = [str(x) for x in df.columns]
expected_column_names = ['Prénom', 'Nom', "Numéro d'identification", 'Adresse de courriel']
expected_column_names = ['Prénom', 'Nom de famille', "Numéro d’identification", 'Adresse de courriel']
missing_cols = list()
for col_name in expected_column_names:
if col_name not in column_names:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment