(self, text, is_password=False)
| 71 | ) |
| 72 | |
| 73 | def prompt(self, text, is_password=False): |
| 74 | return prompt( |
| 75 | text, |
| 76 | is_password=is_password, |
| 77 | history=self.prompt_history if not is_password else None, |
| 78 | auto_suggest=self.prompt_auto_suggest, |
| 79 | style=self.prompt_style, |
| 80 | ) |
| 81 | |
| 82 | def gap(self): |
| 83 | self._console.print("") |