Formatting
This commit is contained in:
parent
61362663a1
commit
66795a7ed9
3
main.py
3
main.py
@ -131,6 +131,7 @@ def ws_onopen(ws):
|
|||||||
ws.pause_output = True # Disable output for the duration of input handling
|
ws.pause_output = True # Disable output for the duration of input handling
|
||||||
|
|
||||||
if key == "h":
|
if key == "h":
|
||||||
|
print(" -- Help menu / Controls --")
|
||||||
for key, value in commands.items():
|
for key, value in commands.items():
|
||||||
print(" " + Style.BRIGHT + key + Style.NORMAL + " - " + value)
|
print(" " + Style.BRIGHT + key + Style.NORMAL + " - " + value)
|
||||||
elif key == "s":
|
elif key == "s":
|
||||||
@ -158,6 +159,8 @@ def ws_onopen(ws):
|
|||||||
print("Quitting (may take a bit for the websocket to close)")
|
print("Quitting (may take a bit for the websocket to close)")
|
||||||
ws.close()
|
ws.close()
|
||||||
break
|
break
|
||||||
|
elif key == " ":
|
||||||
|
printstatus = True
|
||||||
|
|
||||||
# create a thread to run the blocking task
|
# create a thread to run the blocking task
|
||||||
thread = threading.Thread(target=main_loop)
|
thread = threading.Thread(target=main_loop)
|
||||||
|
Loading…
Reference in New Issue
Block a user