Write a newline to stdout (and flush).
()
| 106 | |
| 107 | |
| 108 | def _write_newline() -> None: |
| 109 | """Write a newline to stdout (and flush).""" |
| 110 | sys.stdout.write("\n") |
| 111 | sys.stdout.flush() |
| 112 | |
| 113 | |
| 114 | class _ConsoleSpinner: |
no test coverage detected
searching dependent graphs…