From 74b3a2014a3cd207d526917438ae28fe9bcdccfa Mon Sep 17 00:00:00 2001 From: yurekami Date: Thu, 25 Dec 2025 03:34:46 +0900 Subject: [PATCH] style: fix formatting for pre-commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 Signed-off-by: yurekami --- vllm/v1/executor/ray_utils.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vllm/v1/executor/ray_utils.py b/vllm/v1/executor/ray_utils.py index ec0884c014f38..29cf0fc4958ab 100644 --- a/vllm/v1/executor/ray_utils.py +++ b/vllm/v1/executor/ray_utils.py @@ -340,9 +340,12 @@ def initialize_ray_cluster( parallel_config.world_size, parallel_config.tensor_parallel_size, parallel_config.pipeline_parallel_size, - (f" × prefill_context_parallel_size=" - f"{parallel_config.prefill_context_parallel_size}" - if parallel_config.prefill_context_parallel_size > 1 else ""), + ( + f" × prefill_context_parallel_size=" + f"{parallel_config.prefill_context_parallel_size}" + if parallel_config.prefill_context_parallel_size > 1 + else "" + ), ) if ray.is_initialized():