From 720c1ed35f94997f062dcf5a2d038db5c6dc135c Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Sun, 7 Aug 2022 18:59:56 -0400 Subject: [PATCH] Fix linting --- pipenv/core.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pipenv/core.py b/pipenv/core.py index 26ad7c84..0b24086b 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -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]