From cc9a2018784687976d971f2fdbd66cbaeec5a222 Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Wed, 20 May 2026 22:58:01 +0400 Subject: [PATCH] fixed indentation --- unsloth_cli/commands/studio.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/unsloth_cli/commands/studio.py b/unsloth_cli/commands/studio.py index 94416374f3..6ef42be247 100644 --- a/unsloth_cli/commands/studio.py +++ b/unsloth_cli/commands/studio.py @@ -1048,10 +1048,6 @@ def _run_setup_script(*, verbose: bool = False) -> None: stdout = _stream_for_subprocess(sys.stdout), stderr = _stream_for_subprocess(sys.stderr), **_windows_hidden_subprocess_kwargs(), - result = subprocess.run( - ["powershell", "-ExecutionPolicy", "Bypass", "-File", str(script)], - env = env, - ) else: result = subprocess.run(["bash", str(script)], env = env)