@@ -103,7 +103,7 @@ fn main() {
103103 exit ( 1 ) ;
104104 }
105105 }
106- Param :: ResetCreator { } => {
106+ Param :: ResetCreator => {
107107 if let Err ( e) = Config :: default ( ) . reset_creator ( ) {
108108 print_error ( e) ;
109109 exit ( 1 ) ;
@@ -115,7 +115,7 @@ fn main() {
115115 exit ( 1 ) ;
116116 }
117117 }
118- Param :: ResetCreatorEmail { } => {
118+ Param :: ResetCreatorEmail => {
119119 if let Err ( e) = Config :: default ( ) . reset_creator_email ( ) {
120120 print_error ( e) ;
121121 exit ( 1 ) ;
@@ -127,7 +127,7 @@ fn main() {
127127 exit ( 1 ) ;
128128 }
129129 }
130- Param :: ResetLicense { } => {
130+ Param :: ResetLicense => {
131131 if let Err ( e) = Config :: default ( ) . reset_license ( ) {
132132 print_error ( e) ;
133133 exit ( 1 ) ;
@@ -139,7 +139,7 @@ fn main() {
139139 exit ( 1 ) ;
140140 }
141141 }
142- Param :: ResetPythonVersion { } => {
142+ Param :: ResetPythonVersion => {
143143 if let Err ( e) = Config :: default ( ) . reset_python_version ( ) {
144144 print_error ( e) ;
145145 exit ( 1 ) ;
@@ -151,7 +151,7 @@ fn main() {
151151 exit ( 1 ) ;
152152 }
153153 }
154- Param :: ResetMinPythonVersion { } => {
154+ Param :: ResetMinPythonVersion => {
155155 if let Err ( e) = Config :: default ( ) . reset_min_python_version ( ) {
156156 print_error ( e) ;
157157 exit ( 1 ) ;
@@ -163,7 +163,7 @@ fn main() {
163163 exit ( 1 ) ;
164164 }
165165 }
166- Param :: ResetProjectManager { } => {
166+ Param :: ResetProjectManager => {
167167 if let Err ( e) = Config :: default ( ) . reset_project_manager ( ) {
168168 print_error ( e) ;
169169 exit ( 1 ) ;
@@ -175,7 +175,7 @@ fn main() {
175175 exit ( 1 ) ;
176176 }
177177 }
178- Param :: ResetPyo3PythonManager { } => {
178+ Param :: ResetPyo3PythonManager => {
179179 if let Err ( e) = Config :: default ( ) . reset_pyo3_python_manager ( ) {
180180 print_error ( e) ;
181181 exit ( 1 ) ;
@@ -195,7 +195,7 @@ fn main() {
195195 }
196196 }
197197 } ,
198- Param :: ResetApplicationOrLibrary { } => {
198+ Param :: ResetApplicationOrLibrary => {
199199 if let Err ( e) = Config :: default ( ) . reset_is_application ( ) {
200200 print_error ( e) ;
201201 exit ( 1 ) ;
@@ -215,7 +215,7 @@ fn main() {
215215 }
216216 }
217217 } ,
218- Param :: ResetIsAsyncProject { } => {
218+ Param :: ResetIsAsyncProject => {
219219 if let Err ( e) = Config :: default ( ) . reset_is_async_project ( ) {
220220 print_error ( e) ;
221221 exit ( 1 ) ;
@@ -227,7 +227,7 @@ fn main() {
227227 exit ( 1 ) ;
228228 }
229229 }
230- Param :: ResetGithubActionPythonTestVersions { } => {
230+ Param :: ResetGithubActionPythonTestVersions => {
231231 if let Err ( e) = Config :: default ( ) . reset_github_actions_python_test_versions ( ) {
232232 print_error ( e) ;
233233 exit ( 1 ) ;
@@ -239,7 +239,7 @@ fn main() {
239239 exit ( 1 ) ;
240240 }
241241 }
242- Param :: ResetMaxLineLength { } => {
242+ Param :: ResetMaxLineLength => {
243243 if let Err ( e) = Config :: default ( ) . reset_max_line_length ( ) {
244244 print_error ( e) ;
245245 exit ( 1 ) ;
@@ -259,7 +259,7 @@ fn main() {
259259 }
260260 }
261261 } ,
262- Param :: ResetUseDependabot { } => {
262+ Param :: ResetUseDependabot => {
263263 if let Err ( e) = Config :: default ( ) . reset_use_dependabot ( ) {
264264 print_error ( e) ;
265265 exit ( 1 ) ;
@@ -271,7 +271,7 @@ fn main() {
271271 exit ( 1 ) ;
272272 }
273273 }
274- Param :: ResetDependabotSchedule { } => {
274+ Param :: ResetDependabotSchedule => {
275275 if let Err ( e) = Config :: default ( ) . reset_dependabot_schedule ( ) {
276276 print_error ( e) ;
277277 exit ( 1 ) ;
@@ -283,7 +283,7 @@ fn main() {
283283 exit ( 1 ) ;
284284 }
285285 }
286- Param :: ResetDependabotDay { } => {
286+ Param :: ResetDependabotDay => {
287287 if let Err ( e) = Config :: default ( ) . reset_dependabot_day ( ) {
288288 print_error ( e) ;
289289 exit ( 1 ) ;
@@ -303,7 +303,7 @@ fn main() {
303303 }
304304 }
305305 } ,
306- Param :: ResetUseContinuousDeployment { } => {
306+ Param :: ResetUseContinuousDeployment => {
307307 if let Err ( e) = Config :: default ( ) . reset_use_continuous_deployment ( ) {
308308 print_error ( e) ;
309309 exit ( 1 ) ;
@@ -323,7 +323,7 @@ fn main() {
323323 }
324324 }
325325 } ,
326- Param :: ResetUseReleaseDrafter { } => {
326+ Param :: ResetUseReleaseDrafter => {
327327 if let Err ( e) = Config :: default ( ) . reset_use_release_drafter ( ) {
328328 print_error ( e) ;
329329 exit ( 1 ) ;
@@ -343,7 +343,7 @@ fn main() {
343343 }
344344 }
345345 } ,
346- Param :: ResetUseMultiOsCi { } => {
346+ Param :: ResetUseMultiOsCi => {
347347 if let Err ( e) = Config :: default ( ) . reset_use_multi_os_ci ( ) {
348348 print_error ( e) ;
349349 exit ( 1 ) ;
@@ -363,7 +363,7 @@ fn main() {
363363 }
364364 }
365365 } ,
366- Param :: ResetIncludeDocs { } => {
366+ Param :: ResetIncludeDocs => {
367367 if let Err ( e) = Config :: default ( ) . reset_include_docs ( ) {
368368 print_error ( e) ;
369369 exit ( 1 ) ;
@@ -383,7 +383,7 @@ fn main() {
383383 }
384384 }
385385 } ,
386- Param :: ResetDownloadLatestPackages { } => {
386+ Param :: ResetDownloadLatestPackages => {
387387 if let Err ( e) = Config :: default ( ) . reset_download_latest_packages ( ) {
388388 print_error ( e) ;
389389 exit ( 1 ) ;
0 commit comments