Fix: element -> row

This commit is contained in:
Bertrand Benjamin 2021-01-05 09:14:37 +01:00
parent 52f2f3f4cf
commit 00c2681823
1 changed files with 4 additions and 4 deletions

View File

@ -34,12 +34,12 @@ def setup():
print(f"The file {tribe['students']} does not exists")
def exam_dict2element(exam):
""" Transform an exam in dictionnary for into list of element to evaluate"""
elements = []
def exam_dict2row(exam):
""" Transform an exam in dictionnary for into list of rows to evaluate"""
rows = []
for ex in exam["exercices"]:
for q in ex["questions"]:
elements.append(
rows.append(
{
"term": exam["term"],
"assessment": exam["name"],