Skip to content

Commit

Permalink
Change to be named Bootloader
Browse files Browse the repository at this point in the history
  • Loading branch information
roryjamesallen authored Jan 30, 2024
1 parent 62a80f4 commit 0dca32f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions software/contrib/bootloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
from os import remove


class UpdateFirmware(EuroPiScript):
class Bootloader(EuroPiScript):
@classmethod
def display_name(cls):
"""Push this script to the end of the menu."""
return "~Update Firmware"
return "~Bootloader"

def back(self):
try:
Expand All @@ -30,5 +30,5 @@ def main(self):
oled.show()

if __name__ == "__main__":
UpdateFirmware().main()
Bootloader().main()

0 comments on commit 0dca32f

Please sign in to comment.