diff --git a/recopytex/df_marks_manip.py b/recopytex/df_marks_manip.py index ed194fa..584882b 100644 --- a/recopytex/df_marks_manip.py +++ b/recopytex/df_marks_manip.py @@ -49,7 +49,8 @@ def score_to_mark(x): raise ValueError( f"The evaluation is out of range: {x[COLUMNS['score']]} at {x}" ) - return round_half_point(x[COLUMNS["score"]] * x[COLUMNS["score_rate"]] / 3) + return round(x[COLUMNS["score"]] * x[COLUMNS["score_rate"]] / 3, 2) + #return round_half_point(x[COLUMNS["score"]] * x[COLUMNS["score_rate"]] / 3) if x[COLUMNS["score"]] > x[COLUMNS["score_rate"]]: raise ValueError(