From b20b3b80dfe26bb1aa21e91673745069121b401f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 14 Mar 2026 07:07:04 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- studio/install_python_stack.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/studio/install_python_stack.py b/studio/install_python_stack.py index 4a2d3759b9..e20f1eb486 100644 --- a/studio/install_python_stack.py +++ b/studio/install_python_stack.py @@ -110,15 +110,15 @@ def _bootstrap_uv() -> bool: # If uv can't find a venv it exits with code 2. probe = subprocess.run( ["uv", "pip", "install", "--dry-run", "pip"], - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, + stdout = subprocess.PIPE, + stderr = subprocess.STDOUT, ) if probe.returncode != 0: # Retry with --system to confirm it works probe_sys = subprocess.run( ["uv", "pip", "install", "--dry-run", "--system", "pip"], - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, + stdout = subprocess.PIPE, + stderr = subprocess.STDOUT, ) if probe_sys.returncode != 0: return False # uv is broken, fall back to pip