(self)
| 147 | await self.send(line + "\n") |
| 148 | |
| 149 | async def wait(self): |
| 150 | if self._proc is None: |
| 151 | raise RuntimeError("TTYSpawn is not started") |
| 152 | return await self._proc.wait() |
| 153 | |
| 154 | def kill(self): |
| 155 | """Force-kill the running child process. |
no test coverage detected