Fix: element -> row
This commit is contained in:
parent
52f2f3f4cf
commit
00c2681823
@ -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"],
|
||||
|
Loading…
Reference in New Issue
Block a user