Writes a unicode string into the internal buffer.
(self, string: str)
| 144 | self.buffer = [] |
| 145 | |
| 146 | def write(self, string: str) -> None: |
| 147 | """Writes a unicode string into the internal buffer.""" |
| 148 | self.buffer.append(string) |
| 149 | |
| 150 | def indent(self) -> None: |
| 151 | """Increases the indentation.""" |
no outgoing calls
no test coverage detected