Skip to content

Commit 94df2f1

Browse files
committed
Fix lint
Signed-off-by: Yong Hoon Shin <[email protected]>
1 parent 69279d2 commit 94df2f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/v1/worker/gpu_model_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,7 @@ def execute_model(
14471447
if envs.VLLM_COMPUTE_PADDED_LOGITS_INDICES:
14481448
assert self.logits_indices is not None
14491449
num_logits = logits_indices.shape[0]
1450-
assert num_logits > 0
1450+
assert num_logits > 0
14511451
self.logits_indices[:num_logits].copy_(logits_indices)
14521452
# Ensure we keep duplicates instead of zeros
14531453
self.logits_indices[num_logits:].fill_(logits_indices[-1].item())

0 commit comments

Comments
 (0)