Commit 480978cf by Vik Paruchuri

Fix invalid import statement

parent 0e81f916
...@@ -12,7 +12,6 @@ import sys ...@@ -12,7 +12,6 @@ import sys
from pkg_resources import resource_string from pkg_resources import resource_string
from .capa_module import only_one, ComplexEncoder from .capa_module import only_one, ComplexEncoder
from common.lib.xmodule.xmodule import open_ended_module
from .editing_module import EditingDescriptor from .editing_module import EditingDescriptor
from .html_checker import check_html from .html_checker import check_html
from progress import Progress from progress import Progress
...@@ -21,6 +20,7 @@ from .x_module import XModule ...@@ -21,6 +20,7 @@ from .x_module import XModule
from .xml_module import XmlDescriptor from .xml_module import XmlDescriptor
from xmodule.modulestore import Location from xmodule.modulestore import Location
import self_assessment_module import self_assessment_module
import open_ended_module
log = logging.getLogger("mitx.courseware") log = logging.getLogger("mitx.courseware")
......
...@@ -57,8 +57,6 @@ class OpenEndedModule(): ...@@ -57,8 +57,6 @@ class OpenEndedModule():
DEFAULT_QUEUE = 'open-ended' DEFAULT_QUEUE = 'open-ended'
DEFAULT_MESSAGE_QUEUE = 'open-ended-message' DEFAULT_MESSAGE_QUEUE = 'open-ended-message'
response_tag = 'openendedresponse'
allowed_inputfields = ['openendedinput']
max_inputfields = 1 max_inputfields = 1
STATE_VERSION = 1 STATE_VERSION = 1
......
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