Prompt the user for input and handle any abort exceptions.
(*args, **kwargs)
| 50 | |
| 51 | |
| 52 | def prompt(*args, **kwargs) -> bool: |
| 53 | """Prompt the user for input and handle any abort exceptions.""" |
| 54 | try: |
| 55 | return click.prompt(*args, **kwargs) |
| 56 | except click.Abort: |
| 57 | return False |
no test coverage detected