This commit is contained in:
Ross
2024-01-08 14:22:39 +00:00
parent 39a7076ab2
commit 9d05e5d34e
+1 -1
View File
@@ -2133,7 +2133,7 @@ class ExamViews(View, LoginRequiredMixin):
lower_score_bound = max_score / 5
bounded_scores = [i for i in user_scores_list if i > lower_score_bound]
if bounded_scores:
user_Scores_list = bounded_scores
user_scores_list = bounded_scores
mean = statistics.mean(user_scores_list)
median = statistics.median(user_scores_list)
try: