File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ def is_valid_version_number(v: Text) -> bool:
147
147
if version in PRERELEASE_FLAVORS and not current_version .prerelease :
148
148
# at this stage it's hard to guess the kind of version bump the
149
149
# releaser wants, so we ask them
150
- if version == "alpha"
150
+ if version == "alpha" :
151
151
choices = [
152
152
str (current_version .next_alpha ("minor" )),
153
153
str (current_version .next_alpha ("micro" )),
@@ -160,8 +160,7 @@ def is_valid_version_number(v: Text) -> bool:
160
160
str (current_version .next_release_candidate ("major" )),
161
161
]
162
162
version = questionary .select (
163
- f"Which { version } do you want to release?" ,
164
- choices = choices ,
163
+ f"Which { version } do you want to release?" , choices = choices ,
165
164
).ask ()
166
165
167
166
if version :
You can’t perform that action at this time.
0 commit comments