Skip to content

Commit 6064eaf

Browse files
committed
fix linting
Signed-off-by: Nick Hill <nhill@redhat.com>
1 parent ad78003 commit 6064eaf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vllm/v1/engine/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ def step(self) -> tuple[EngineCoreOutputs, bool]:
231231
engine_core_outputs = self.scheduler.update_from_output(
232232
scheduler_output, model_output) # type: ignore
233233

234-
return engine_core_outputs, scheduler_output.total_num_scheduled_tokens > 0
234+
return (engine_core_outputs,
235+
scheduler_output.total_num_scheduled_tokens > 0)
235236

236237
def step_with_batch_queue(
237238
self) -> tuple[Optional[EngineCoreOutputs], bool]:

0 commit comments

Comments
 (0)