1
0
Fork 0
pre-commit/testing/resources/python_hooks_repo/foo.py

10 lines
129 B
Python
Raw Permalink Normal View History

from __future__ import annotations
import sys
def main():
print(repr(sys.argv[1:]))
print('Hello World')
return 0