Skip to content

Commit 80ab1b7

Browse files
style: add newlines at end of files
1 parent 667f4b4 commit 80ab1b7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/clparse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,4 +472,4 @@ pub fn parse_command_line() -> clap::ArgMatches {
472472
)
473473
)
474474
.get_matches()
475-
}
475+
}

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ struct Config {
2929
async 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

src/utils/webpki_error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)