mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 13:00:10 -06:00
11 lines
181 B
Python
11 lines
181 B
Python
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
|
|
def func():
|
|
print('{}.{}'.format(*sys.version_info[:2]))
|
|
print(repr(sys.argv[1:]))
|
|
print('Hello World')
|
|
return 0
|