We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74228d1 commit f535274Copy full SHA for f535274
commitizen/commands/commit.py
@@ -65,7 +65,8 @@ def _read_backup_message(self) -> str | None:
65
def _prompt_commit_questions(self) -> str:
66
# Prompt user for the commit message
67
cz = self.cz
68
- questions = cz.questions()
+ questions = [dict(question) for question in cz.questions()]
69
+
70
for question in (q for q in questions if q["type"] == "list"):
71
question["use_shortcuts"] = self.config.settings["use_shortcuts"]
72
try:
0 commit comments