fix peer_handle

This commit is contained in:
Alex Cheema
2025-01-22 21:07:49 +00:00
parent 461e4f37cb
commit 97f3bad38f

View File

@@ -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