Skip to content

Commit fef9baa

Browse files
committed
fix(cz): fix bug in BaseCommitizen.style
#37
1 parent 944b4bf commit fef9baa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commitizen/cz/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def message(self, answers: dict) -> str:
3636
@property
3737
def style(self):
3838
return merge_styles(
39-
[BaseCommitizen.default_style_config, Style(self.config["style"])]
39+
[Style(BaseCommitizen.default_style_config), Style(self.config["style"])]
4040
)
4141

4242
def example(self) -> str:

0 commit comments

Comments
 (0)