mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2025-08-14 09:27:21 +08:00
15 lines
360 B
Python
15 lines
360 B
Python
from __future__ import absolute_import
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
def main(): # type: () -> int
|
|
raise SystemExit(
|
|
'autopep8-wrapper is deprecated. Instead use autopep8 directly via '
|
|
'https://github.com/pre-commit/mirrors-autopep8',
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
exit(main())
|