Fix linting

This commit is contained in:
Matt Davis
2022-08-07 18:59:56 -04:00
committed by Oz N Tiram
parent e7e4722012
commit 720c1ed35f
+3 -1
View File
@@ -730,7 +730,9 @@ def batch_install(
deps_to_install = deps_list[:]
deps_to_install.extend(sequential_deps)
deps_to_install = [
dep for dep in deps_to_install if not project.environment.is_satisfied(dep) and dep.name not in BAD_PACKAGES
dep
for dep in deps_to_install
if not project.environment.is_satisfied(dep) and dep.name not in BAD_PACKAGES
]
sequential_dep_names = [d.name for d in sequential_deps]