Skip to content

Commit

Permalink
chore: resolve linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ruthra-kumar committed Dec 27, 2023
1 parent 14c8c8c commit 0890b41
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def bisect_left(self):
self.fetch_or_calculate()
self.save()
else:
frappe.msgprint("No more children on Left")
frappe.msgprint(_("No more children on Left"))

@frappe.whitelist()
def bisect_right(self):
Expand All @@ -209,7 +209,7 @@ def bisect_right(self):
self.fetch_or_calculate()
self.save()
else:
frappe.msgprint("No more children on Right")
frappe.msgprint(_("No more children on Right"))

@frappe.whitelist()
def move_up(self):
Expand All @@ -223,4 +223,4 @@ def move_up(self):
self.fetch_or_calculate()
self.save()
else:
frappe.msgprint("Reached Root")
frappe.msgprint(_("Reached Root"))

0 comments on commit 0890b41

Please sign in to comment.