Skip to content

Commit dda73ba

Browse files
committed
fix(customize.py): default questions as super().questions() instead of [{}]
1 parent 8e4a3ee commit dda73ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commitizen/cz/customize/customize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def __init__(self, config: BaseConfig):
5454
self.change_type_map = change_type_map
5555

5656
def questions(self) -> Questions:
57-
custom_questions = self.custom_settings.get("questions", [{}])
57+
custom_questions = self.custom_settings.get("questions")
5858
if custom_questions:
5959
return custom_questions
6060
return super().questions()

0 commit comments

Comments
 (0)