(self, text: str)
| 44 | self.output.write("\n") |
| 45 | |
| 46 | def comment(self, text: str) -> None: |
| 47 | for line in textwrap.wrap( |
| 48 | text, self.width - 2, break_long_words=False, break_on_hyphens=False |
| 49 | ): |
| 50 | self.output.write("# " + line + "\n") |
| 51 | |
| 52 | def variable( |
| 53 | self, |
no test coverage detected