From f9836829163a58ce9428d77c687f9ac88cae81f0 Mon Sep 17 00:00:00 2001 From: Jules PAYEN <jules.payen.etu@hevea22.iut-infobio.priv.univ-lille1.fr> Date: Tue, 20 Feb 2024 15:10:27 +0100 Subject: [PATCH] fix evaluation type error --- app/models/evaluations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/evaluations.py b/app/models/evaluations.py index b5ff3a675..1d13a968d 100644 --- a/app/models/evaluations.py +++ b/app/models/evaluations.py @@ -23,7 +23,7 @@ MAX_EVALUATION_DURATION = datetime.timedelta(days=365) NOON = datetime.time(12, 00) DEFAULT_EVALUATION_TIME = datetime.time(8, 0) -VALID_EVALUATION_TYPES = {0, 1, 2} +VALID_EVALUATION_TYPES = {0, 1, 2, 3, 4} class Evaluation(db.Model): -- GitLab