1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

Removed 'return' in __init__

This commit is contained in:
maurycyp 2013-12-05 00:43:48 -05:00 committed by Tim Graham
parent 1864c6b5ad
commit ae734b75c1

View File

@ -48,7 +48,7 @@ class CustomKwargsStep1(Step1):
def __init__(self, test=None, *args, **kwargs):
self.test = test
return super(CustomKwargsStep1, self).__init__(*args, **kwargs)
super(CustomKwargsStep1, self).__init__(*args, **kwargs)
class TestModel(models.Model):