File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -427,22 +427,22 @@ def print_issue_overview(*insights):
427
427
]
428
428
cmd_line_args = cmd_line_parser .parse_args ()
429
429
430
- error_depth = cmd_line_args .error_depth
431
- startup_message .append (" - Depth for listing libraries with errors: {}" .format (error_depth ))
432
-
433
430
verbosity = cmd_line_args .verbose
434
431
435
- github_token = cmd_line_args .gh_token
436
- validator_kwarg_list ["github_token" ] = github_token
437
- startup_message .append (" - Prompts for the GitHub Token are {}." .format (("enabled" if github_token else "disabled" )))
438
-
439
432
if cmd_line_args .output_file :
440
433
output_filename = cmd_line_args .output_file
441
434
startup_message .append (" - Report output will be saved to: {}" .format (output_filename ))
442
435
443
436
validators = []
444
437
validator_names = []
445
438
if cmd_line_args .validator :
439
+ error_depth = cmd_line_args .error_depth
440
+ startup_message .append (" - Depth for listing libraries with errors: {}" .format (error_depth ))
441
+
442
+ github_token = cmd_line_args .gh_token
443
+ validator_kwarg_list ["github_token" ] = github_token
444
+ startup_message .append (" - Prompts for the GitHub Token are {}." .format (("enabled" if github_token else "disabled" )))
445
+
446
446
if cmd_line_args .validator != "all" :
447
447
validators = []
448
448
for func in cmd_line_args .validator .split ("," ):
You can’t perform that action at this time.
0 commit comments