(message: str)
| 146 | |
| 147 | |
| 148 | def prompt_path(message: str) -> str: |
| 149 | if is_notebook(): |
| 150 | return prompt_text(message) |
| 151 | else: |
| 152 | return questionary.path(message, only_directories=True).ask() |
| 153 | |
| 154 | |
| 155 | def prompt_password(message: str) -> str: |
no test coverage detected