(self)
| 343 | self._thread: threading.Thread | None = None |
| 344 | |
| 345 | def start(self) -> None: |
| 346 | sys.stdout.write(f" {self._label}") |
| 347 | sys.stdout.flush() |
| 348 | self._thread = threading.Thread(target=self._run, daemon=True) |
| 349 | self._thread.start() |
| 350 | |
| 351 | def _run(self) -> None: |
| 352 | while not self._stop.wait(timeout=1.0): |