We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2deec1 commit 3d4d48cCopy full SHA for 3d4d48c
codespell_lib/__main__.py
@@ -3,4 +3,7 @@
3
from ._codespell import _script_main
4
5
if __name__ == "__main__":
6
- sys.exit(_script_main())
+ try:
7
+ sys.exit(_script_main())
8
+ except KeyboardInterrupt:
9
+ pass
0 commit comments