(self)
| 120 | self._active = False |
| 121 | |
| 122 | def join(self) -> None: |
| 123 | # Wait for RpcClient thread to exit |
| 124 | if self._thread and self._thread.is_alive(): |
| 125 | self._thread.join() |
| 126 | self._thread = None |
| 127 | |
| 128 | def run(self) -> None: |
| 129 | """ |
no outgoing calls
no test coverage detected