Make Black Formatter happy?

setup-docker
Justin O'Boyle 2022-12-13 07:43:25 -05:00
parent 55a2f209fd
commit f48511f54a
1 changed files with 3 additions and 0 deletions

View File

@ -1,10 +1,13 @@
# Daemon to run processes in the background
import time
import sys, signal
def signal_handler(signal, frame):
print("\nprogram exiting gracefully")
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)