File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,15 +110,15 @@ def _parse_arguments() -> object:
110110 required = False ,
111111 type = int ,
112112 default = 0 ,
113- help = f "Deletes projects not analyzed since a given number of days" ,
113+ help = "Deletes projects not analyzed since a given number of days" ,
114114 )
115115 parser .add_argument (
116116 "-B" ,
117117 "--branchesMaxAge" ,
118118 required = False ,
119119 type = int ,
120120 default = 0 ,
121- help = f "Deletes branches not to be kept and not analyzed since a given number of days" ,
121+ help = "Deletes branches not to be kept and not analyzed since a given number of days" ,
122122 )
123123 parser .add_argument (
124124 "--keepWhenInactive" ,
@@ -132,15 +132,15 @@ def _parse_arguments() -> object:
132132 required = False ,
133133 type = int ,
134134 default = 0 ,
135- help = f "Deletes pull requests not analyzed since a given number of days" ,
135+ help = "Deletes pull requests not analyzed since a given number of days" ,
136136 )
137137 parser .add_argument (
138138 "-T" ,
139139 "--tokensMaxAge" ,
140140 required = False ,
141141 type = int ,
142142 default = 0 ,
143- help = f "Deletes user tokens older than a certain number of days" ,
143+ help = "Deletes user tokens older than a certain number of days" ,
144144 )
145145 return options .parse_and_check (parser = parser , logger_name = TOOL_NAME )
146146
You can’t perform that action at this time.
0 commit comments