From a9f5c5bfcaaec9a3debf6e82b19aaf152ceb60fe Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Thu, 27 Feb 2025 21:50:41 -0500 Subject: [PATCH] fix: Incorrect import path for print_subcommand_description() (#1315) # What does this PR do? [Provide a short summary of what this PR does and why. Link to relevant issues if applicable.] [//]: # (If resolving an issue, uncomment and update the line below) [//]: # (Closes #[issue-number]) ## 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/llama.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/llama.py b/llama_stack/cli/llama.py index fb9eae236..8ff580029 100644 --- a/llama_stack/cli/llama.py +++ b/llama_stack/cli/llama.py @@ -9,7 +9,7 @@ import argparse from .download import Download from .model import ModelParser from .stack import StackParser -from .utils import print_subcommand_description +from .stack.utils import print_subcommand_description from .verify_download import VerifyDownload