From c7cdcb5b4c98d06433dfaec3e0d278a80b6a7162 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 a1cce1d791..3277191883 100644 --- a/unsloth_cli/commands/studio.py +++ b/unsloth_cli/commands/studio.py @@ -835,10 +835,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)