Skip to content

Commit 7757b0e

Browse files
committed
pre-commit solved
1 parent 488c6bf commit 7757b0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vllm/v1/core/sched/scheduler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939

4040

4141
class Scheduler(SchedulerInterface):
42-
4342
# Policy mapping for efficient policy lookup
4443
_POLICY_MAPPING = {
4544
"priority": SchedulingPolicy.PRIORITY,
@@ -109,7 +108,8 @@ def __init__(
109108
try:
110109
self.policy = self._POLICY_MAPPING[policy_name]
111110
except KeyError:
112-
raise ValueError(f"Unknown scheduling policy: {policy_name}") from None
111+
raise ValueError(
112+
f"Unknown scheduling policy: {policy_name}") from None
113113
# Priority queues for requests.
114114
self.waiting = create_request_queue(self.policy)
115115
self.running: list[Request] = []

0 commit comments

Comments
 (0)