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
|
||||
|
@ -51,7 +51,7 @@ class Account(DirtyFieldsMixin, models.Model):
|
||||
NET_CHANGE = "3353"
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(Account, self).__init__(*args, **kwargs)
|
||||
super().__init__(*args, **kwargs)
|
||||
self.url = None
|
||||
self.debit_amount = None
|
||||
self.credit_amount = None
|
||||
@ -148,7 +148,7 @@ class Transaction(DirtyFieldsMixin, models.Model):
|
||||
related_name="updated_accounting_transactions")
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(Transaction, self).__init__(*args, **kwargs)
|
||||
super().__init__(*args, **kwargs)
|
||||
self._records = None
|
||||
self._is_balanced = None
|
||||
self._has_order_hole = None
|
||||
@ -375,7 +375,7 @@ class Record(DirtyFieldsMixin, models.Model):
|
||||
related_name="updated_accounting_records")
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(Record, self).__init__(*args, **kwargs)
|
||||
super().__init__(*args, **kwargs)
|
||||
self._debit_amount = None
|
||||
self._credit_amount = None
|
||||
self.balance = None
|
||||
|
Reference in New Issue
Block a user