Fix flake8 line too long

This commit is contained in:
Joseph Barker 2020-08-28 10:29:12 +09:00
parent c12d2ba5c6
commit 459e573019
No known key found for this signature in database
GPG Key ID: A42D72998CB33917

View File

@ -10,7 +10,8 @@ import platform
if sys.version_info >= (3, 0):
from shutil import which
else:
# python2 compat: shutil.which is not available so we provide our own which command
# python2 compat: shutil.which is not available so we provide our
# own which command
def which(file, mode=os.F_OK | os.X_OK, path=None):
if path is not None:
search_paths = [path]