Skip to content

Commit e953f47

Browse files
committed
v1: fix MultiprocExecutor.collective_rpc() return type
Suggestion by @tlrmchlsmth. Signed-off-by: Mark McLoughlin <[email protected]>
1 parent fdf070d commit e953f47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/v1/executor/multiproc_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def collective_rpc(self,
104104
method: str,
105105
timeout: Optional[float] = None,
106106
args: Tuple = (),
107-
kwargs: Optional[Dict] = None) -> Any:
107+
kwargs: Optional[Dict] = None) -> List[Any]:
108108
"""
109109
Execute an RPC call on workers.
110110

0 commit comments

Comments
 (0)