We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab07f18 commit bf48570Copy full SHA for bf48570
1 file changed
src/pgcachewatch/__main__.py
@@ -1,10 +1,6 @@
1
import asyncio
2
-import contextlib
3
-import signal
4
5
from pgcachewatch import cli
6
7
if __name__ == "__main__":
8
- signal.signal(signal.SIGPIPE, signal.SIG_DFL)
9
- with contextlib.suppress(KeyboardInterrupt):
10
- asyncio.run(cli.main())
+ asyncio.run(cli.main())
0 commit comments