File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 37
37
logger = getLogger ("commitizen" )
38
38
39
39
40
- class BumpArguments (Settings , total = False ):
40
+ class BumpArgs (Settings , total = False ):
41
41
allow_no_commit : bool | None
42
42
annotated_tag_message : str | None
43
43
annotated_tag : bool
@@ -65,15 +65,15 @@ class BumpArguments(Settings, total=False):
65
65
class Bump :
66
66
"""Show prompt for the user to create a guided commit."""
67
67
68
- def __init__ (self , config : BaseConfig , arguments : BumpArguments ) -> None :
68
+ def __init__ (self , config : BaseConfig , arguments : BumpArgs ) -> None :
69
69
if not git .is_git_project ():
70
70
raise NotAGitProjectError ()
71
71
72
72
self .config : BaseConfig = config
73
73
self .encoding = config .settings ["encoding" ]
74
74
self .arguments = arguments
75
75
self .bump_settings = cast (
76
- BumpArguments ,
76
+ BumpArgs ,
77
77
{
78
78
** config .settings ,
79
79
** {
You can’t perform that action at this time.
0 commit comments