chore: resolve linter issues
This commit is contained in:
parent
14c8c8c33d
commit
0890b414b1
@ -195,7 +195,7 @@ class BisectAccountingStatements(Document):
|
|||||||
self.fetch_or_calculate()
|
self.fetch_or_calculate()
|
||||||
self.save()
|
self.save()
|
||||||
else:
|
else:
|
||||||
frappe.msgprint("No more children on Left")
|
frappe.msgprint(_("No more children on Left"))
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def bisect_right(self):
|
def bisect_right(self):
|
||||||
@ -209,7 +209,7 @@ class BisectAccountingStatements(Document):
|
|||||||
self.fetch_or_calculate()
|
self.fetch_or_calculate()
|
||||||
self.save()
|
self.save()
|
||||||
else:
|
else:
|
||||||
frappe.msgprint("No more children on Right")
|
frappe.msgprint(_("No more children on Right"))
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def move_up(self):
|
def move_up(self):
|
||||||
@ -223,4 +223,4 @@ class BisectAccountingStatements(Document):
|
|||||||
self.fetch_or_calculate()
|
self.fetch_or_calculate()
|
||||||
self.save()
|
self.save()
|
||||||
else:
|
else:
|
||||||
frappe.msgprint("Reached Root")
|
frappe.msgprint(_("Reached Root"))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user