Check for KeyboardInterrupt signal.
(self)
| 724 | raise RpcTimeoutError(f"No response with ID {expected_id} within {timeout}s") |
| 725 | |
| 726 | def _check_interrupt(self) -> None: |
| 727 | """Check for KeyboardInterrupt signal.""" |
| 728 | if is_interrupted(): |
| 729 | raise KeyboardInterrupt() |
| 730 | |
| 731 | async def __aenter__(self) -> "RpcClient": |
| 732 | """Async context manager entry - connects to device.""" |
no test coverage detected