Some quick fixes to the CLI behavior to make it consistent

This commit is contained in:
Ashwin Bharambe 2024-08-28 17:17:46 -07:00
parent f1244f6d9e
commit 3063329dad
5 changed files with 74 additions and 17 deletions

View file

@ -5,7 +5,6 @@
# the root directory of this source tree.
import argparse
from typing import Dict
from llama_toolchain.cli.subcommand import Subcommand
from llama_toolchain.distribution.datatypes import * # noqa: F403
@ -46,7 +45,7 @@ class StackBuild(Subcommand):
self.parser.add_argument(
"--type",
type=str,
default="container",
default="conda_env",
choices=[v.value for v in BuildType],
)