diff --git a/commitizen/commands/init.py b/commitizen/commands/init.py index eed9b83ae4..d4a4180aa3 100644 --- a/commitizen/commands/init.py +++ b/commitizen/commands/init.py @@ -51,7 +51,7 @@ def __call__(self): def _ask_config_path(self) -> str: name = questionary.select( "Please choose a supported config file: (default: pyproject.toml)", - choices=config_files, # type: ignore + choices=config_files, default="pyproject.toml", style=self.cz.style, ).ask()