From 1f671862d5a17b92e0e55b88f47a5deacfbb2daa Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Mon, 24 Apr 2023 20:28:49 -0600 Subject: [PATCH] pypi: `brew style --fix` Signed-off-by: William Woodruff --- Library/Homebrew/utils/pypi.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/utils/pypi.rb b/Library/Homebrew/utils/pypi.rb index 03b4a56a99..d85ecc7800 100644 --- a/Library/Homebrew/utils/pypi.rb +++ b/Library/Homebrew/utils/pypi.rb @@ -216,7 +216,8 @@ module PyPI ohai "Retrieving PyPI dependencies for \"#{input_packages.join(" ")}\"..." if !print_only && !silent command = - [Formula["python"].bin/"python3", "-m", "pip", "install", "-q", "--dry-run", "--ignore-installed", "--report", "/dev/stdout", *input_packages.map(&:to_s)] + [Formula["python"].bin/"python3", "-m", "pip", "install", "-q", "--dry-run", "--ignore-installed", "--report", + "/dev/stdout", *input_packages.map(&:to_s)] pip_output = Utils.popen_read({ "PIP_REQUIRE_VIRTUALENV" => "false" }, *command) unless $CHILD_STATUS.success? odie <<~EOS