(self, result: object)
| 148 | ) |
| 149 | |
| 150 | def _show_result(self, result: object) -> None: |
| 151 | self._get_output_printer().display_result( |
| 152 | result=result, |
| 153 | out_prompt=self.get_output_prompt(), |
| 154 | reformat=self.enable_output_formatting, |
| 155 | highlight=self.enable_syntax_highlighting, |
| 156 | paginate=self.enable_pager, |
| 157 | ) |
| 158 | |
| 159 | def run(self) -> None: |
| 160 | """ |
no test coverage detected