1
0
Fork 0
pre-commit-hooks/pre_commit_hooks/removed.py
Daniel Baumann 6bd375ed5f
Adding upstream version 4.5.0+dfsg.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-09 20:21:14 +01:00

16 lines
381 B
Python

from __future__ import annotations
import sys
from typing 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())