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