fix(CLI): Missing default for --image-type in stack run command

Signed-off-by: Yuan Tang <terrytangyuan@gmail.com>
This commit is contained in:
Yuan Tang 2025-02-26 05:11:54 -05:00
parent abfc4b3bce
commit 64767578d6
No known key found for this signature in database

View file

@ -73,6 +73,7 @@ class StackRun(Subcommand):
type=str,
help="Image Type used during the build. This can be either conda or container or venv.",
choices=["conda", "container", "venv"],
default="conda",
)
def _run_stack_run_cmd(self, args: argparse.Namespace) -> None: