From 328eede87d004a169738258cbc5620d9d35ad49f Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Sat, 23 May 2026 01:33:00 +0400 Subject: [PATCH] fix missing parathensis --- unsloth_cli/commands/studio.py | 1 + 1 file changed, 1 insertion(+) diff --git a/unsloth_cli/commands/studio.py b/unsloth_cli/commands/studio.py index 3277191883..e9871aab21 100644 --- a/unsloth_cli/commands/studio.py +++ b/unsloth_cli/commands/studio.py @@ -835,6 +835,7 @@ def _run_setup_script(*, verbose: bool = False) -> None: stdout = _stream_for_subprocess(sys.stdout), stderr = _stream_for_subprocess(sys.stderr), **_windows_hidden_subprocess_kwargs(), + ) else: result = subprocess.run(["bash", str(script)], env = env)