소스 검색

fix peer_handle

Alex Cheema 6 달 전
부모
커밋
97f3bad38f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      exo/networking/peer_handle.py

+ 1 - 1
exo/networking/peer_handle.py

@@ -48,7 +48,7 @@ class PeerHandle(ABC):
     pass
 
   @abstractmethod
-  async def send_new_token(self, request_id: str, token: int, is_finished: bool) -> None:
+  async def send_result(self, request_id: str, result: List[int], is_finished: bool) -> None:
     pass
 
   @abstractmethod