()
| 46 | |
| 47 | |
| 48 | def try_again(): |
| 49 | response = inquirer.list_input( |
| 50 | message="Do you want to ask more questions?", |
| 51 | choices=["Yes", "No"], |
| 52 | ).execute() |
| 53 | |
| 54 | if response.lower() == "yes": |
| 55 | magic_8_ball() |
| 56 | else: |
| 57 | exit() |
| 58 | |
| 59 | |
| 60 | if __name__ == "__main__": |
no test coverage detected