Commit 640353d9 by Sarina Canelake

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

parent 9c7c4c8d
...@@ -371,7 +371,7 @@ class SettableEnrollmentState(EmailEnrollmentState): ...@@ -371,7 +371,7 @@ class SettableEnrollmentState(EmailEnrollmentState):
a call to create_user will make objects which a call to create_user will make objects which
correspond to the state represented in the SettableEnrollmentState. 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.user = user
self.enrollment = enrollment self.enrollment = enrollment
self.allowed = allowed self.allowed = allowed
......
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