Skip to content

Commit 5c0763e

Browse files
pre-commit-ci[bot]dukecat0
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2b0dc8f commit 5c0763e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/pipx/venv.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def __init__(
109109
if self._existing:
110110
self.backend = self.pipx_metadata.backend
111111
self.installer = self.pipx_metadata.installer
112-
112+
113113
if not path_to_exec(self.backend):
114114
self.backend = "venv"
115115
if not path_to_exec(self.installer):
@@ -504,7 +504,9 @@ def _run_installer(
504504
# do not use -q with `pip install` so subprocess_post_check_pip_errors
505505
# has more information to analyze in case of failure.
506506
if installer != "uv":
507-
return self._run_pip(["--no-input", "install"] + (["--no-dependencies"] if no_deps else []) + cmd, quiet=quiet)
507+
return self._run_pip(
508+
["--no-input", "install"] + (["--no-dependencies"] if no_deps else []) + cmd, quiet=quiet
509+
)
508510
else:
509511
return self._run_uv(["pip", "install"] + (["--no-deps"] if no_deps else []) + cmd, quiet=quiet)
510512

0 commit comments

Comments
 (0)