Close the server.
(self)
| 95 | print(f"[Client {self.global_rank}] Connect to {self.host}:{self.port}") |
| 96 | |
| 97 | def close(self) -> None: |
| 98 | """Close the server.""" |
| 99 | self.sock.close() |
| 100 | |
| 101 | def pull(self) -> None: |
| 102 | """Client pull weights from server. |
no outgoing calls
no test coverage detected