(self, *args: object)
| 135 | self.level -= 1 |
| 136 | |
| 137 | def print(self, *args: object) -> None: |
| 138 | if not args: |
| 139 | print(file=self.file) |
| 140 | else: |
| 141 | print(" " * self.level, end="", file=self.file) |
| 142 | print(*args, file=self.file) |
| 143 | |
| 144 | def printblock(self, lines: str) -> None: |
| 145 | for line in lines.splitlines(): |
no outgoing calls
no test coverage detected