From a324ceb9a951267a5c32abb310a7c83af844b4e6 Mon Sep 17 00:00:00 2001 From: Xi Yan Date: Wed, 19 Feb 2025 22:40:26 -0800 Subject: [PATCH] precommit again --- llama_stack/scripts/run_client_sdk_tests.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/llama_stack/scripts/run_client_sdk_tests.py b/llama_stack/scripts/run_client_sdk_tests.py index 90ecb8426..1e2ef1ac8 100644 --- a/llama_stack/scripts/run_client_sdk_tests.py +++ b/llama_stack/scripts/run_client_sdk_tests.py @@ -10,7 +10,6 @@ from pathlib import Path import pytest - """ Script for running client-sdk on AsyncLlamaStackAsLibraryClient with templates @@ -36,9 +35,7 @@ CLIENT_SDK_TESTS_RELATIVE_PATH = "tests/client-sdk/" def main(parser: argparse.ArgumentParser): args = parser.parse_args() templates_dir = REPO_ROOT / "llama_stack" / "templates" - user_specified_templates = ( - [templates_dir / t for t in args.templates] if args.templates else [] - ) + user_specified_templates = [templates_dir / t for t in args.templates] if args.templates else [] for d in templates_dir.iterdir(): if d.is_dir() and d.name != "__pycache__": template_configs = list(d.rglob("run.yaml"))