(self, status: str)
| 15 | status: Status | None = dataclasses.field(default=None, init=False) |
| 16 | |
| 17 | async def start(self, status: str) -> None: |
| 18 | self.status = Status(status, console=self.console) |
| 19 | await asyncify(self.status.start) |
| 20 | |
| 21 | async def stop(self) -> None: |
| 22 | if self.status: |