From f4df3a76d99d929fa1e463ac8b40af2f7b3b6d53 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Thu, 27 Feb 2025 21:35:49 -0500 Subject: [PATCH] fix: Incorrect import path for print_subcommand_description() (#1314) # What does this PR do? Missed this one additional import in https://github.com/meta-llama/llama-stack/pull/1313 ## Test Plan [Describe the tests you ran to verify your changes with result summaries. *Provide clear instructions so the plan can be easily re-executed.*] [//]: # (## Documentation) Signed-off-by: Yuan Tang --- llama_stack/cli/stack/stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/stack/stack.py b/llama_stack/cli/stack/stack.py index 7b6215ef4..ccf1a5ffc 100644 --- a/llama_stack/cli/stack/stack.py +++ b/llama_stack/cli/stack/stack.py @@ -7,8 +7,8 @@ import argparse from importlib.metadata import version +from llama_stack.cli.stack.utils import print_subcommand_description from llama_stack.cli.subcommand import Subcommand -from llama_stack.cli.utils import print_subcommand_description from .build import StackBuild from .list_apis import StackListApis