Remove catch that was causing linux ctrl+c issues

This was for hiding an error on Windows, but it isn't required
This commit is contained in:
pythongosssss 2023-02-13 20:12:12 +00:00 committed by GitHub
parent 8e51af6786
commit 68a1ac7746
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -532,9 +532,5 @@ if __name__ == "__main__":
except:
pass
try:
loop.run_until_complete(run(q, socket_handler, address=address, port=port))
except KeyboardInterrupt:
pass
loop.run_until_complete(run(q, socket_handler, address=address, port=port))