mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 13:00:10 -06:00
Fix Py3
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
from __future__ import print_function
|
||||
import sys
|
||||
|
||||
|
||||
def func():
|
||||
print repr(sys.argv[1:])
|
||||
print 'Hello World'
|
||||
print(repr(sys.argv[1:]))
|
||||
print('Hello World')
|
||||
return 0
|
||||
|
||||
Reference in New Issue
Block a user