Added signal handling

This commit is contained in:
Pünkösd Marcell 2020-03-29 19:31:43 +02:00
parent 805e735da5
commit abc87057bf

5
app.py
View File

@ -62,4 +62,7 @@ def main():
if __name__ == "__main__":
main()
try:
main()
except KeyboardInterrupt:
pass