Useless return (#2521)

This commit is contained in:
Mikalai Radchuk 2016-04-26 19:24:40 +03:00 committed by Karl Hobley
parent a3d36a122c
commit b7995f91e0

View file

@ -8,7 +8,7 @@ import django.forms
class BaseForm(django.forms.Form):
def __init__(self, *args, **kwargs):
kwargs.setdefault('label_suffix', '')
return super(BaseForm, self).__init__(*args, **kwargs)
super(BaseForm, self).__init__(*args, **kwargs)
class FormBuilder(object):