Skip to content

Commit f493bbd

Browse files
committed
fix: indentation
1 parent 1d54a0b commit f493bbd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

nipype/utils/tests/test_functions.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ def test_func_py2():
2626
def is_string():
2727
return isinstance('string', str)
2828

29-
def print_statement():
29+
def print_statement():
3030
# test python 2 compatibility
31-
try:
32-
exec('print ""')
33-
return True
34-
except SyntaxError:
35-
return False
31+
try:
32+
exec('print ""')
33+
return True
34+
except SyntaxError:
35+
return False
3636

3737
wrapped_func = create_function_from_source(getsource(is_string))
3838
assert is_string() == wrapped_func()

0 commit comments

Comments
 (0)