File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -472,4 +472,4 @@ pub fn parse_command_line() -> clap::ArgMatches {
472472 )
473473 )
474474 . get_matches ( )
475- }
475+ }
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ struct Config {
2929async fn main ( ) -> Result < ( ) , Box < dyn std:: error:: Error > > {
3030 let app_matches = parse_command_line ( ) ;
3131 let sub_command_opt = app_matches. subcommand ( ) ;
32-
32+
3333 // Handle the case where there's no subcommand
3434 if sub_command_opt. is_none ( ) {
3535 eprintln ! ( "No subcommand provided" ) ;
3636 exit ( 1 ) ;
3737 }
38-
38+
3939 let ( sub_command, sub_matches) = sub_command_opt. unwrap ( ) ;
4040 let matches = sub_matches;
4141
Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ impl From<webpki::Error> for WebPkiError {
1515 fn from ( error : webpki:: Error ) -> Self {
1616 WebPkiError ( error)
1717 }
18- }
18+ }
You can’t perform that action at this time.
0 commit comments