Print with global indent prefix.
(*args, **kwargs)
| 34 | |
| 35 | |
| 36 | def iprint(*args, **kwargs): |
| 37 | """Print with global indent prefix.""" |
| 38 | if _INDENT: |
| 39 | print(_INDENT, end="") |
| 40 | print(*args, **kwargs) |
| 41 | |
| 42 | |
| 43 | def _sgr(code): |
no outgoing calls
no test coverage detected