Skip to content

Commit ae6dad2

Browse files
committed
fixes post rebase
Signed-off-by: Patryk Saffer <[email protected]>
1 parent 7a03145 commit ae6dad2

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

vllm/config/parallel.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -670,11 +670,7 @@ def _verify_args(self) -> Self:
670670
"save_load_window is set to True, but save_dir is provided."
671671
)
672672
if self.eplb_config.save_load_window and self.eplb_config.static:
673-
raise ValueError(
674-
"save_load_window cannot be set to true with static eplb."
675-
)
673+
raise ValueError("save_load_window cannot be set to true with static eplb.")
676674
if self.eplb_config.use_async and self.eplb_config.static:
677-
raise ValueError(
678-
"use_async cannot be set to true with static eplb."
679-
)
675+
raise ValueError("use_async cannot be set to true with static eplb.")
680676
return self

0 commit comments

Comments
 (0)