(self, *args, **kwargs)
| 54 | super().print(*args, **kwargs, style=self.OUTPUT_STYLE) |
| 55 | |
| 56 | def debug(self, *args, **kwargs): |
| 57 | logger.debug(" ".join(map(str, args))) |
| 58 | super().print(*args, **kwargs, style=self.DEBUG_STYLE) |
| 59 | |
| 60 | def print_list(self, items, style=None): |
| 61 | for item in items: |
no outgoing calls