Confirm
A confirmation prompt that allows the user to confirm or reject.
Example

from inquirer_textual import prompts
if __name__ == '__main__':
answer = prompts.confirm("Proceed?")
print(answer)
A confirmation prompt that allows the user to confirm or reject.

from inquirer_textual import prompts
if __name__ == '__main__':
answer = prompts.confirm("Proceed?")
print(answer)