chore: use super() instead of super(__class__, self)

This commit is contained in:
ruthra kumar
2024-04-09 17:35:15 +05:30
parent dc79213bb3
commit 24d37d22a3

View File

@@ -32,7 +32,7 @@ class TestLedgerHealth(AccountsTestMixin, FrappeTestCase):
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()