style fix

This commit is contained in:
Bas Nijholt 2020-10-02 13:50:38 +02:00 committed by GitHub
parent 5adc7edc4f
commit 0b516b31de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -196,7 +196,14 @@ def install_environment(
python = norm_version(version)
if python is not None:
venv_cmd.extend(('-p', python))
install_cmd = ('python', '-mpip', 'install', '--isolated', '.', *additional_dependencies)
install_cmd = (
'python',
'-mpip',
'install',
'--isolated',
'.',
*additional_dependencies,
)
with clean_path_on_failure(envdir):
cmd_output_b(*venv_cmd, cwd='/')