()
| 160 | stop_updates = threading.Event() |
| 161 | |
| 162 | def update_status() -> None: |
| 163 | while not stop_updates.is_set(): |
| 164 | try: |
| 165 | live.update(create_live_status()) |
| 166 | time.sleep(2) |
| 167 | except Exception: |
| 168 | break |
| 169 | |
| 170 | update_thread = threading.Thread(target=update_status, daemon=True) |
| 171 | update_thread.start() |
nothing calls this directly
no test coverage detected