diff --git a/recopytex/scripts/recopytex.py b/recopytex/scripts/recopytex.py index 6404898..4ef5ff9 100644 --- a/recopytex/scripts/recopytex.py +++ b/recopytex/scripts/recopytex.py @@ -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"],