Remove needless 'disable=no-member' pragmas

This commit is contained in:
Ned Batchelder
2015-08-03 16:59:57 -04:00
parent ee0f4b2594
commit f54fe787c6
73 changed files with 144 additions and 186 deletions

View File

@@ -311,7 +311,6 @@ class TestInstructorEnrollmentStudentModule(ModuleStoreTestCase):
self.course_key = self.course.location.course_key
self.parent = ItemFactory(
category="library_content",
# pylint: disable=no-member
user_id=self.user.id,
parent=self.course,
publish_item=True,
@@ -319,7 +318,6 @@ class TestInstructorEnrollmentStudentModule(ModuleStoreTestCase):
)
self.child = ItemFactory(
category="html",
# pylint: disable=no-member
user_id=self.user.id,
parent=self.parent,
publish_item=True,
@@ -327,7 +325,6 @@ class TestInstructorEnrollmentStudentModule(ModuleStoreTestCase):
)
self.unrelated = ItemFactory(
category="html",
# pylint: disable=no-member
user_id=self.user.id,
parent=self.course,
publish_item=True,