(self)
| 705 | } |
| 706 | |
| 707 | def run(self): |
| 708 | # Clear the screen and display the menu of keys |
| 709 | # Main loop: |
| 710 | while True: |
| 711 | self.display() |
| 712 | self.handle_keys() |
| 713 | |
| 714 | def handle_keys(self): |
| 715 | """Determine what method to call for each keypress. |
no test coverage detected