MCPcopy Index your code
hub / github.com/usestrix/strix / update_status

Function update_status

strix/interface/cli.py:162–168  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 1

create_live_statusFunction · 0.85

Tested by

no test coverage detected