(self, output: str)
| 105 | raise io.UnsupportedOperation |
| 106 | |
| 107 | def write(self, output: str) -> int: |
| 108 | resp: dict[str, Any] = {self.output_key: output} |
| 109 | send(self.server, resp) |
| 110 | return len(output) |
| 111 | |
| 112 | def writable(self) -> bool: |
| 113 | return True |
no test coverage detected