pre-commit-hooks/pre_commit_hooks/autopep8_wrapper.py
2020-02-05 11:22:18 -08:00

9 lines
229 B
Python

def main() -> int:
raise SystemExit(
'autopep8-wrapper is deprecated. Instead use autopep8 directly via '
'https://github.com/pre-commit/mirrors-autopep8',
)
if __name__ == '__main__':
exit(main())