Remove redundant init

This convoluted bit of code was doing the exact same thing as just
inheriting from the parent class’s `__init__`.
This commit is contained in:
Chris Hill-Scott
2017-10-04 11:44:04 +01:00
parent 5998b34f20
commit 9b06f2da23

View File

@@ -214,9 +214,6 @@ class TextNotReceivedForm(Form):
class ServiceNameForm(Form):
def __init__(self, *args, **kwargs):
super(ServiceNameForm, self).__init__(*args, **kwargs)
name = StringField(
u'Service name',
validators=[