mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-30 10:16:54 +00:00
14 lines
350 B
Python
14 lines
350 B
Python
from __future__ import absolute_import
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
def main(argv=None):
|
|
raise SystemExit(
|
|
'autopep8-wrapper is deprecated. Instead use autopep8 directly via '
|
|
'https://github.com/pre-commit/mirrors-autopep8',
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
exit(main())
|