Remove duplicate variable

This commit is contained in:
Gleb Kozyrev
2019-02-14 09:34:40 +02:00
committed by Dan Ryan
parent 57389a24f8
commit 4231d47dee
+1 -2
View File
@@ -778,7 +778,6 @@ def do_install_dependencies(
from six.moves import queue
if requirements:
bare = True
blocking = not concurrent
# Load the lockfile if it exists, or if only is being used (e.g. lock is being used).
if skip_lock or only or not project.lockfile_exists:
if not bare:
@@ -825,7 +824,7 @@ def do_install_dependencies(
install_kwargs = {
"no_deps": no_deps, "ignore_hashes": ignore_hashes, "allow_global": allow_global,
"blocking": blocking, "pypi_mirror": pypi_mirror
"blocking": not concurrent, "pypi_mirror": pypi_mirror
}
# with project.environment.activated():