(self, *text: str)
| 119 | ) |
| 120 | |
| 121 | def write_status(self, *text: str) -> None: |
| 122 | if not self.suppress_output: |
| 123 | sys.stderr.write(" ".join(text)) |
| 124 | |
| 125 | def write_output_file_from_text( |
| 126 | self, text: str, destination_path: Union[str, Path] |
no test coverage detected