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

(cherry picked from commit 24d37d22a3)
This commit is contained in:
ruthra kumar
2024-04-09 17:35:15 +05:30
committed by Mergify
parent 98ad034b21
commit 5808feaccf

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()