Skip to content

Commit

Permalink
shift CLI cpinner one character to right
Browse files Browse the repository at this point in the history
This aligns it better with rest of the stuff above
  • Loading branch information
fohrloop committed May 30, 2024
1 parent 65c5b7e commit 8f2b636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wakepy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def wait_until_keyboardinterrupt() -> None:
spinner_symbols = ["⢎⡰", "⢎⡡", "⢎⡑", "⢎⠱", "⠎⡱", "⢊⡱", "⢌⡱", "⢆⡱"]
try:
for spinner_symbol in itertools.cycle(spinner_symbols): # pragma: no branch
print("\r" + spinner_symbol + r" [Press Ctrl+C to exit] ", end="")
print("\r " + spinner_symbol + r" [Press Ctrl+C to exit] ", end="")
time.sleep(0.8)
except KeyboardInterrupt:
pass
Expand Down

0 comments on commit 8f2b636

Please sign in to comment.