mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-06 10:42:39 +00:00
lint
This commit is contained in:
parent
a31b5da5cc
commit
e8c5b9b4cc
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue