(self)
| 70 | return exit_token |
| 71 | |
| 72 | def _ui_loop(self): |
| 73 | while True: |
| 74 | command = self._get_user_command() |
| 75 | |
| 76 | exit_token = self._dispatch_command(command) |
| 77 | if exit_token is not None: |
| 78 | return exit_token |
| 79 | |
| 80 | def _get_user_command(self): |
| 81 | print("") |
no test coverage detected