This commit is contained in:
Edward Ma 2025-01-28 09:16:42 -08:00
parent a31b5da5cc
commit e8c5b9b4cc

View file

@ -199,4 +199,8 @@ class StackRun(Subcommand):
return
run_args.extend(["--env", f"{key}={value}"])
run_with_win(run_args) if sys.platform.startswith("win") else run_with_pty(run_args)
(
run_with_win(run_args)
if sys.platform.startswith("win")
else run_with_pty(run_args)
)