From ef9233ecd6185a4da9115659a458f1e978841ba3 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Thu, 27 Feb 2025 21:41:08 -0500 Subject: [PATCH] fix: Incorrect import path for print_subcommand_description() 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