mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-18 02:40:40 +00:00
9 lines
257 B
Python
9 lines
257 B
Python
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
|
|
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
|
|
|
|
"""Coverage.py's main entry point."""
|
|
|
|
import sys
|
|
from coverage.cmdline import main
|
|
sys.exit(main())
|