From aee280c640fa80502885b132b733c905ca65034e Mon Sep 17 00:00:00 2001 From: Joshua Davey Date: Sat, 20 Apr 2024 00:09:13 -0400 Subject: [PATCH] cargo fmt --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 268034d..1b161dc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,6 @@ use std::io::{self, BufRead, BufReader}; mod analysis; mod reformat; - use reformat::{reformat, FormatMode, FormatOpts}; fn print_reformatted(opts: &FormatOpts, buf: &[String]) { @@ -64,10 +63,9 @@ struct Cli { /// Try to handle code comments #[arg(short, long)] - code_comments: bool + code_comments: bool, } - fn main() { let cli = Cli::parse();