(self, line: StyleAndTextTuples, end: str = "\n")
| 120 | self.output.flush() |
| 121 | |
| 122 | def _print_formatted_text(self, line: StyleAndTextTuples, end: str = "\n") -> None: |
| 123 | print_formatted_text( |
| 124 | FormattedText(line), |
| 125 | style=self.style, |
| 126 | style_transformation=self.style_transformation, |
| 127 | include_default_pygments_style=False, |
| 128 | output=self.output, |
| 129 | end=end, |
| 130 | ) |
| 131 | |
| 132 | def _format_result_output( |
| 133 | self, |
no outgoing calls
no test coverage detected