src/eric7/DebugClients/Python/coverage/__main__.py@f5d9aa5c62db
src/eric7/DebugClients/Python/coverage/__main__.py
Thu, 13 Oct 2022 17:55:37 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 13 Oct 2022 17:55:37 +0200
- branch
- eric7
- changeset 9402
- f5d9aa5c62db
- parent 9209
-
b99e7fd55fd3
- permissions
- -rw-r--r--
Reformatted the code with the black tool.
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
"""Coverage.py's main entry point."""
import sys
from coverage.cmdline import main
sys.exit(main())