Fix: remove useless print

This commit is contained in:
Bertrand Benjamin 2021-01-23 06:54:19 +01:00
parent 1fe7665753
commit 1255bf4b9e

View File

@ -252,7 +252,6 @@ def store_exam(tribe, exam_name, date, term, exercices, elements, elements_id):
ex_elements = elements[index] ex_elements = elements[index]
exam.add_exercise(name, ex_elements) exam.add_exercise(name, ex_elements)
print(yaml.dump(exam.to_dict()))
return exam.to_dict() return exam.to_dict()