(self)
| 698 | self._application.exit() |
| 699 | |
| 700 | async def _run_ui(self): |
| 701 | self._application.create_background_task( |
| 702 | self._log_events_printer.run() |
| 703 | ) |
| 704 | self._application.create_background_task(self._render_metadata()) |
| 705 | self._application.create_background_task(self._trim_buffers()) |
| 706 | |
| 707 | await self._application.run_async() |
| 708 | |
| 709 | def run(self): |
| 710 | asyncio.get_event_loop().run_until_complete(self._run_ui()) |
no test coverage detected