fix(controller): Clean up stray pass in _run_event_loop (Task 5.5)

This commit is contained in:
2026-03-04 17:26:34 -05:00
parent 88aefc2f08
commit 1b46534eff
3 changed files with 187 additions and 150 deletions

View File

@@ -468,8 +468,6 @@ class AppController:
"""Internal loop runner."""
asyncio.set_event_loop(self._loop)
self._loop.create_task(self._process_event_queue())
pass # Loop runs the process_event_queue task
self._loop.run_forever()
async def _process_event_queue(self) -> None: