Fix maximum line length

This commit is contained in:
Thomas Kluyver 2019-10-09 08:43:58 +01:00
parent f7132d9c6d
commit a6b13b637b
2 changed files with 6 additions and 2 deletions

View File

@ -607,7 +607,9 @@ def get_lib_location_guesses(*args, **kwargs):
def site_packages_writable(**kwargs):
return all(test_writable_dir(d) for d in get_lib_location_guesses(**kwargs))
return all(
test_writable_dir(d) for d in get_lib_location_guesses(**kwargs)
)
def create_env_error_message(error, show_traceback, using_user_site):

View File

@ -157,4 +157,6 @@ def _test_writable_dir_win(path):
return True
# This should never be reached
raise EnvironmentError('Unexpected condition testing for writable directory')
raise EnvironmentError(
'Unexpected condition testing for writable directory'
)