(self)
| 1275 | return screenout |
| 1276 | |
| 1277 | def pauseScreen(self): |
| 1278 | while True: |
| 1279 | self.clearShell() |
| 1280 | print('\n\t\t\tPause') |
| 1281 | print('\n\t\t1. Resume') |
| 1282 | print('\t\t2. Quit') |
| 1283 | |
| 1284 | selection = str(input('\nSelection: ')).upper() |
| 1285 | while selection not in ['1', '2']: |
| 1286 | print('\nSelection Invalid') |
| 1287 | selection = str(input('\nSelection: ')).upper() |
| 1288 | |
| 1289 | if selection == '1' or "": |
| 1290 | return "" |
| 1291 | |
| 1292 | elif selection == '2': |
| 1293 | return "quit" |
| 1294 | |
| 1295 | |
| 1296 | def isComplete(self): |
no test coverage detected