(self, row: int, text: str)
| 80 | self.live.start() |
| 81 | |
| 82 | async def update(self, row: int, text: str): |
| 83 | async with self._lock: |
| 84 | self.statuses[row] = text |
| 85 | self.live.update(self._build_table()) |
| 86 | |
| 87 | async def finish(self): |
| 88 | self.live.stop() |
no test coverage detected