Writes a unicode string into the internal buffer.
(self, string: str)
| 117 | self.buffer: list[str] = [] |
| 118 | |
| 119 | def write(self, string: str) -> None: |
| 120 | """Writes a unicode string into the internal buffer.""" |
| 121 | self.buffer.append(string) |
| 122 | |
| 123 | def indent(self) -> None: |
| 124 | """Increases the indentation.""" |
no outgoing calls
no test coverage detected