()
| 3636 | |
| 3637 | |
| 3638 | def clear(): |
| 3639 | w, h = Camera.get_width_and_height() |
| 3640 | w += 3 |
| 3641 | h += 3 |
| 3642 | for _ in range(h): |
| 3643 | print(" " * w) |
| 3644 | system("cls") |
| 3645 | |
| 3646 | |
| 3647 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected