Simplified the parent constructor calls in the data models and the forms.
This commit is contained in:
@@ -327,7 +327,7 @@ class AccountForm(forms.Form):
|
||||
})
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(AccountForm, self).__init__(*args, **kwargs)
|
||||
super().__init__(*args, **kwargs)
|
||||
self.account = None
|
||||
|
||||
@property
|
||||
|
Reference in New Issue
Block a user