Commit 742d9475 by Vik Paruchuri

Parse int from score

parent c4b1c8d0
......@@ -437,7 +437,7 @@ class OpenEndedModule(openendedchild.OpenEndedChild):
}
feedback_items.append(self._format_feedback(new_score_result))
feedback="".join(feedback_items)
score = median(score_result['score'])
score = int(median(score_result['score']))
else:
#This is for instructor and ML grading
feedback = self._format_feedback(score_result)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment