Skip to content

Instantly share code, notes, and snippets.

@tomekzaw
Created March 3, 2020 21:08
Show Gist options
  • Save tomekzaw/89cd712eb89858084bb5e82768b621e4 to your computer and use it in GitHub Desktop.
Save tomekzaw/89cd712eb89858084bb5e82768b621e4 to your computer and use it in GitHub Desktop.
try:
from signal import pause
except ImportError:
def pause():
from time import sleep
try:
while True:
sleep(1)
except KeyboardInterrupt:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment