Skip to content

Commit

Permalink
list(...keys()) so dict_keys does not show up
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwinb committed Sep 19, 2024
1 parent 880ed37 commit c63d6cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama_stack/cli/stack/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def _run_stack_build_command(self, args: argparse.Namespace) -> None:
validator=Validator.from_callable(
lambda x: x in providers_for_api,
error_message="Invalid provider, please enter one of the following: {}".format(
providers_for_api.keys()
list(providers_for_api.keys())
),
),
default=(
Expand Down

0 comments on commit c63d6cb

Please sign in to comment.