(self, content)
| 3425 | return textwrap.dedent(string).strip() |
| 3426 | |
| 3427 | def set_source(self, content): |
| 3428 | Path(self.filename).write_text(self.text_normalize(content)) |
| 3429 | |
| 3430 | def invoke_ast(self, *flags): |
| 3431 | stderr = StringIO() |
no test coverage detected