Remove pylint pragmas from "class Meta"

Also remove useless docstrings where they were added to keep pylint
quiet.
This commit is contained in:
Ned Batchelder
2015-10-21 07:37:00 -04:00
parent 1775076500
commit 322ca34b20
48 changed files with 105 additions and 121 deletions

View File

@@ -9,7 +9,7 @@ from opaque_keys.edx.locations import SlashSeparatedCourseKey
class InstructorTaskFactory(DjangoModelFactory):
class Meta(object): # pylint: disable=missing-docstring
class Meta(object):
model = InstructorTask
task_type = 'rescore_problem'