From e7379c46c93dcc6a4023e6700d670f2360425a36 Mon Sep 17 00:00:00 2001 From: Brian Krabach Date: Wed, 8 Apr 2026 19:40:04 -0700 Subject: [PATCH] chore: fix step numbering in _run_poll_cycle comments --- muxplex/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/muxplex/main.py b/muxplex/main.py index c6ff905..e32ea9b 100644 --- a/muxplex/main.py +++ b/muxplex/main.py @@ -132,7 +132,7 @@ async def _run_poll_cycle() -> None: # 9. Apply bell clear rule (acknowledge bells when device is watching fullscreen) apply_bell_clear_rule(state) - # 12. Fire bell/clear to the active remote for any device viewing a remote + # 10. Fire bell/clear to the active remote for any device viewing a remote # session in fullscreen with recent interaction. Fire-and-forget: errors # are logged and do not abort the rest of the poll cycle. if _federation_client is not None: @@ -173,10 +173,10 @@ async def _run_poll_cycle() -> None: exc, ) - # 10. Prune devices that haven't sent a heartbeat recently + # 11. Prune devices that haven't sent a heartbeat recently prune_devices(state) - # 11. Atomically persist the updated state + # 12. Atomically persist the updated state save_state(state)