(self)
| 128 | |
| 129 | @contextlib.contextmanager |
| 130 | def indent(self) -> Iterator[None]: |
| 131 | self.level += 1 |
| 132 | try: |
| 133 | yield |
| 134 | finally: |
| 135 | self.level -= 1 |
| 136 | |
| 137 | def print(self, *args: object) -> None: |
| 138 | if not args: |
no outgoing calls
no test coverage detected