pre-commit-hooks/.venv/bin/coverage
2024-04-13 00:00:20 +00:00

10 lines
269 B
Python
Executable file

#!/Users/admin/Git_repos/pre-commit-hooks/.venv/bin/python3
from __future__ import annotations
import re
import sys
from coverage.cmdline import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())