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 2bacb27 commit 332c2f4Copy full SHA for 332c2f4
commitizen/commands/init.py
@@ -58,7 +58,7 @@ def _ask_tag(self) -> str:
58
latest_tag = get_latest_tag()
59
if not latest_tag:
60
out.error("No Existing Tag. Set tag to v0.0.1")
61
- return 'v0.0.1'
+ return "v0.0.1"
62
63
is_correct_tag = questionary.confirm(
64
f"Is {latest_tag} the latest tag?", style=self.cz.style, default=False
@@ -67,7 +67,7 @@ def _ask_tag(self) -> str:
67
tags = get_all_tags()
68
if not tags:
69
70
71
72
latest_tag = questionary.select(
73
"Please choose the latest tag: ",
0 commit comments