Commit c904bd70 by Sarina Canelake

s/pylint: disable=E0604/pylint: disable=invalid-all-object/

parent 1e0f3ddb
...@@ -3161,20 +3161,23 @@ class ChoiceTextResponse(LoncapaResponse): ...@@ -3161,20 +3161,23 @@ class ChoiceTextResponse(LoncapaResponse):
# TEMPORARY: List of all response subclasses # TEMPORARY: List of all response subclasses
# FIXME: To be replaced by auto-registration # FIXME: To be replaced by auto-registration
# pylint: disable=E0604 # pylint: disable=invalid-all-object
__all__ = [CodeResponse, __all__ = [
NumericalResponse, CodeResponse,
FormulaResponse, NumericalResponse,
CustomResponse, FormulaResponse,
SchematicResponse, CustomResponse,
ExternalResponse, SchematicResponse,
ImageResponse, ExternalResponse,
OptionResponse, ImageResponse,
SymbolicResponse, OptionResponse,
StringResponse, SymbolicResponse,
ChoiceResponse, StringResponse,
MultipleChoiceResponse, ChoiceResponse,
TrueFalseResponse, MultipleChoiceResponse,
JavascriptResponse, TrueFalseResponse,
AnnotationResponse, JavascriptResponse,
ChoiceTextResponse] AnnotationResponse,
ChoiceTextResponse,
]
# pylint: enable=invalid-all-object
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