Ask what to Hook
()
| 541 | |
| 542 | |
| 543 | def ask_where(): |
| 544 | """ |
| 545 | Ask what to Hook |
| 546 | """ |
| 547 | answer = questionary.select( |
| 548 | "Select an Option:", |
| 549 | choices=['Memory', 'Register']).ask() |
| 550 | |
| 551 | return answer.lower()[:3] |
| 552 | |
| 553 | |
| 554 | def ask_start_end(): |