Commit e4d715e9 by Bridger Maxwell

Fixed typo in docs and missing import for random score generation.

parent 3bd6ce55
import abc import abc
import logging import logging
import random
from django.conf import settings from django.conf import settings
...@@ -61,7 +62,7 @@ class CourseGrader(object): ...@@ -61,7 +62,7 @@ class CourseGrader(object):
that has the matching section format. that has the matching section format.
The grader outputs a dictionary with the following keys: The grader outputs a dictionary with the following keys:
- percent: Contaisn a float value, which is the final percentage score for the student. - percent: Contains a float value, which is the final percentage score for the student.
- section_breakdown: This is a list of dictionaries which provide details on sections - section_breakdown: This is a list of dictionaries which provide details on sections
that were graded. These are used for display in a graph or chart. The format for a that were graded. These are used for display in a graph or chart. The format for a
section_breakdown dictionary is explained below. section_breakdown dictionary is explained below.
......
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