make scanning easier to type

This commit is contained in:
mollusk 2021-12-17 21:31:39 -07:00
parent 8672b7e9e4
commit 05f394c221

View File

@ -79,7 +79,7 @@ def scan_system():
def mainMenu(): def mainMenu():
print("c) Check Drone") print("c) Check Drone")
print("ss} Scan System") print("s} Scan System")
while True: while True:
mainMenu() mainMenu()
@ -87,7 +87,7 @@ while True:
if repl == "c": if repl == "c":
drone.check_drone() drone.check_drone()
elif repl == "ss": elif repl == "s":
scan_system() scan_system()
elif repl == "q": elif repl == "q":
quit() quit()