(self, content)
| 3451 | return textwrap.dedent(string).strip() |
| 3452 | |
| 3453 | def set_source(self, content): |
| 3454 | Path(self.filename).write_text(self.text_normalize(content)) |
| 3455 | |
| 3456 | def invoke_ast(self, *flags): |
| 3457 | stderr = StringIO() |
no test coverage detected