(self)
| 165 | out.success("Configuration complete 🚀") |
| 166 | |
| 167 | def _ask_config_path(self) -> Path: |
| 168 | filename: str = questionary.select( |
| 169 | "Please choose a supported config file: ", |
| 170 | choices=CONFIG_FILES, |
| 171 | default=project_info.get_default_config_filename(), |
| 172 | style=self.cz.style, |
| 173 | ).unsafe_ask() |
| 174 | return Path(filename) |
| 175 | |
| 176 | def _ask_name(self) -> str: |
| 177 | name: str = questionary.select( |