(self, config: BaseConfig)
| 74 | template_extras: dict[str, Any] = {} |
| 75 | |
| 76 | def __init__(self, config: BaseConfig) -> None: |
| 77 | self.config = config |
| 78 | if not self.config.settings.get("style"): |
| 79 | self.config.settings.update({"style": BaseCommitizen.default_style_config}) |
| 80 | |
| 81 | @abstractmethod |
| 82 | def questions(self) -> list[CzQuestion]: |