From 153c6f1e61a366351ec3ad7d971da17e4ceecb5f Mon Sep 17 00:00:00 2001 From: Michael Goin Date: Tue, 15 Jul 2025 22:18:41 -0400 Subject: [PATCH] [Frontend] Remove print left in FrontendArgs.add_cli_args (#21004) Signed-off-by: mgoin --- vllm/entrypoints/openai/cli_args.py | 1 - 1 file changed, 1 deletion(-) diff --git a/vllm/entrypoints/openai/cli_args.py b/vllm/entrypoints/openai/cli_args.py index f8fdfe71bbe64..bccce73b79f8a 100644 --- a/vllm/entrypoints/openai/cli_args.py +++ b/vllm/entrypoints/openai/cli_args.py @@ -192,7 +192,6 @@ schema. Example: `[{"type": "text", "text": "Hello world!"}]`""" # Special case: allowed_origins, allowed_methods, allowed_headers all # need json.loads type # Should also remove nargs - print(frontend_kwargs["allowed_origins"]) frontend_kwargs["allowed_origins"]["type"] = json.loads frontend_kwargs["allowed_methods"]["type"] = json.loads frontend_kwargs["allowed_headers"]["type"] = json.loads