We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c2bdac commit 3369ab1Copy full SHA for 3369ab1
src/ui/prompt_ui.py
@@ -481,6 +481,8 @@ async def update_ui(self):
481
if self.app and not self.app.invalidated:
482
self.app.invalidate()
483
await asyncio.sleep(0.25)
484
+ except concurrent.futures._base.CancelledError as e:
485
+ log.warn(f"Cancelled error in UI: {type(e)}: {e}")
486
except Exception as e:
487
log.warn(f"Exception in UI update_ui {type(e)}: {e}")
488
raise e
0 commit comments