From b04f6786593742f15eb4bf869d3c9dd3d922fe89 Mon Sep 17 00:00:00 2001 From: Pr0Wh1teGivee Date: Wed, 3 Dec 2025 17:01:51 +0800 Subject: [PATCH] linting Signed-off-by: Pr0Wh1teGivee Signed-off-by: weichen --- vllm/v1/core/sched/policy/normalized_scorer.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vllm/v1/core/sched/policy/normalized_scorer.py b/vllm/v1/core/sched/policy/normalized_scorer.py index d44738068ee56..ff124dd5c8929 100644 --- a/vllm/v1/core/sched/policy/normalized_scorer.py +++ b/vllm/v1/core/sched/policy/normalized_scorer.py @@ -32,7 +32,11 @@ class NormalizedScorer: def __init__(self, dim_list: list[ScoreDim]) -> None: """ - :param dim_list: Scoring dimensions; each dimension must define a median reference point, scaling factor, and weight. + Initialize the scorer with a list of scoring dimensions. + + Args: + dim_list: A list of `ScoreDim` objects. Each dimension must define a + median reference point, scaling factor, and weight. """ self.dim_list = dim_list self.dim_count = len(dim_list)