Skip to content

Commit acc2a25

Browse files
committed
Flake8 Fix
1 parent 11fb6a9 commit acc2a25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wes_client/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
def _two_seven_compatible(filePath):
1616
"""Determines if a python file is 2.7 compatible by seeing if it compiles in a subprocess"""
1717
try:
18-
check_call(['python2', '-m', 'py_compile', filePath],stderr=DEVNULL)
18+
check_call(['python2', '-m', 'py_compile', filePath], stderr=DEVNULL)
1919
except CalledProcessError:
2020
raise RuntimeError('Python files must be 2.7 compatible')
2121
return True

0 commit comments

Comments
 (0)