(self)
| 234 | self.text += txt + "\n" if end is None else end |
| 235 | |
| 236 | def to_string(self) -> None: |
| 237 | print(self.text) |
| 238 | |
| 239 | def to_file(self, filepath: str) -> None: |
| 240 | with open(filepath, "w", encoding="utf-8") as outfile: |
no test coverage detected