(self)
| 139 | self._handle_keyboard_interrupt(e) |
| 140 | |
| 141 | def _get_output_printer(self) -> OutputPrinter: |
| 142 | return OutputPrinter( |
| 143 | output=self.app.output, |
| 144 | input=self.app.input, |
| 145 | style=self._current_style, |
| 146 | style_transformation=self.style_transformation, |
| 147 | title=self.title, |
| 148 | ) |
| 149 | |
| 150 | def _show_result(self, result: object) -> None: |
| 151 | self._get_output_printer().display_result( |
no test coverage detected