pre-commit-hooks/pre_commit_hooks/removed.py

17 lines
390 B
Python

from __future__ import annotations
import sys
from collections.abc import Sequence
def main(argv: Sequence[str] | None = None) -> int:
argv = argv if argv is not None else sys.argv[1:]
hookid, new_hookid, url = argv[:3]
raise SystemExit(
f'`{hookid}` has been removed -- use `{new_hookid}` from {url}',
)
if __name__ == '__main__':
raise SystemExit(main())