commit | 24d37d22a3d5bb52a5b7ee2e0157bc400c50b323 | [log] [tgz] |
---|---|---|
author | ruthra kumar <ruthra@erpnext.com> | Tue Apr 09 17:35:15 2024 +0530 |
committer | ruthra kumar <ruthra@erpnext.com> | Tue Apr 09 17:35:15 2024 +0530 |
tree | d3ee10414d0f68c5653c3e2fb5044422d4bda345 | |
parent | dc79213bb372c0171f6f4d9bab92b91eb5d7314a [diff] |
chore: use super() instead of super(__class__, self)
diff --git a/erpnext/accounts/doctype/ledger_health/test_ledger_health.py b/erpnext/accounts/doctype/ledger_health/test_ledger_health.py index daad855..d35b39d 100644 --- a/erpnext/accounts/doctype/ledger_health/test_ledger_health.py +++ b/erpnext/accounts/doctype/ledger_health/test_ledger_health.py
@@ -32,7 +32,7 @@ monitor_settings.save() def clear_old_entries(self): - super(TestLedgerHealth, self).clear_old_entries() + super().clear_old_entries() lh = qb.DocType("Ledger Health") qb.from_(lh).delete().run()