Remove lock file.
(self)
| 224 | return False |
| 225 | |
| 226 | def _remove_lock(self) -> None: |
| 227 | """Remove lock file.""" |
| 228 | self.lock_file.unlink(missing_ok=True) |
| 229 | |
| 230 | async def _broadcast_output(self, line: str) -> None: |
| 231 | """Broadcast output line to all registered callbacks.""" |
no outgoing calls
no test coverage detected