Skip to content

Commit 409e504

Browse files
committed
fix mypy error
Signed-off-by: Ronald1995 <ronaldautomobile@163.com>
1 parent 9be4b83 commit 409e504

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

tests/v1/e2e/test_async_scheduling.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,7 @@ def preempt_and_async_scheduling_e2e(
128128
for (
129129
other_test_outs,
130130
other_test_logprobs,
131-
), params in zip(
132-
results[1:], self.sampling_param_tests[1:]
133-
):
131+
), params in zip(results[1:], sampling_param_tests[1:]):
134132
with pytest.raises(AssertionError):
135133
check_outputs_equal(
136134
outputs_0_lst=results[0][0],

vllm/v1/core/sched/output.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ class SchedulerOutput:
193193
# togather.
194194
total_num_scheduled_spec_tokens: int = 0
195195

196+
196197
@dataclass
197198
class GrammarOutput:
198199
# ids of structured output requests.

0 commit comments

Comments
 (0)