(self)
| 1294 | _ = self.screen.mount(HelpPanel()) |
| 1295 | |
| 1296 | def on_mount(self) -> None: |
| 1297 | from archinstall.lib.translationhandler import translation_handler |
| 1298 | |
| 1299 | translation_handler.apply_console_font() |
| 1300 | _translate_bindings(self._merged_bindings, self._bindings) |
| 1301 | self._run_worker() |
| 1302 | |
| 1303 | @work |
| 1304 | async def _run_worker(self) -> None: |
nothing calls this directly
no test coverage detected