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-23 14:24:50 +01:00
parent 5998b34f20
commit 9b06f2da23
-3
View File
@@ -214,9 +214,6 @@ class TextNotReceivedForm(Form):
class ServiceNameForm(Form): class ServiceNameForm(Form):
def __init__(self, *args, **kwargs):
super(ServiceNameForm, self).__init__(*args, **kwargs)
name = StringField( name = StringField(
u'Service name', u'Service name',
validators=[ validators=[