(self, new_item: bool = False)
| 174 | self.xg = XMLGenerator(file, encoding=self.encoding) |
| 175 | |
| 176 | def _beautify_newline(self, new_item: bool = False) -> None: |
| 177 | if self.indent is not None and (self.indent > 0 or new_item): |
| 178 | self.xg.characters("\n") |
| 179 | |
| 180 | def _beautify_indent(self, depth: int = 1) -> None: |
| 181 | if self.indent: |
no outgoing calls
no test coverage detected