confirm.py 313 B

1234567891011121314151617
  1. from PyInquirer import prompt
  2. # Ask for boolean confirmation
  3. class Confirmer:
  4. def __init__(self):
  5. self.widget = [
  6. {
  7. 'type':'confirm',
  8. 'name':'ok',
  9. 'message':'Please confirm',
  10. 'default':True
  11. }
  12. ]
  13. def confirm(self):
  14. return prompt(self.widget)['ok']