8000
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def __call__(self):
47
47
def _ask_config_path (self ) -> str :
48
48
name = questionary .select (
49
49
"Please choose a supported config file: (default: pyproject.toml)" ,
50
- choices = config_files ,
50
+ choices = config_files , # type: ignore
51
51
default = "pyproject.toml" ,
52
52
style = self .cz .style ,
53
53
).ask ()
@@ -79,7 +79,7 @@ def _ask_tag(self) -> str:
79
79
80
80
latest_tag = questionary .select (
81
81
"Please choose the latest tag: " ,
82
- choices = get_tag_names (),
82
+ choices = get_tag_names (), # type: ignore
83
83
style = self .cz .style ,
84
84
).ask ()
85
85
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ def get_latest_tag_name() -> Optional[str]:
123
123
return c .out .strip ()
124
124
125
125
126
- def get_tag_names () -> Optional [ List [str ]]:
126
+ def get_tag_names () -> List [ Optional [str ]]:
127
127
c = cmd .run ("git tag --list" )
128
128
if c .err :
129
129
return []
You can’t perform that action at this time.
0 commit comments