mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-13 20:40:08 -06:00
10 lines
132 B
Python
10 lines
132 B
Python
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
|
|
def func():
|
|
print(repr(sys.argv[1:]))
|
|
print('Hello World')
|
|
return 0
|