s/pylint: disable=W0231/pylint: disable=super-init-not-called/

This commit is contained in:
Sarina Canelake
2014-11-30 18:12:52 -05:00
parent 9c7c4c8d26
commit 640353d94a

View File

@@ -371,7 +371,7 @@ class SettableEnrollmentState(EmailEnrollmentState):
a call to create_user will make objects which
correspond to the state represented in the SettableEnrollmentState.
"""
def __init__(self, user=False, enrollment=False, allowed=False, auto_enroll=False): # pylint: disable=W0231
def __init__(self, user=False, enrollment=False, allowed=False, auto_enroll=False): # pylint: disable=super-init-not-called
self.user = user
self.enrollment = enrollment
self.allowed = allowed