diff --git a/src/afterfact.rs b/src/afterfact.rs index 80088a55..7e4b9501 100644 --- a/src/afterfact.rs +++ b/src/afterfact.rs @@ -412,13 +412,13 @@ fn emit_csv( write_color_buffer( &disp_wtr, get_writable_color(None), - &format!("Data reduction: {} events ({:.2}%)", - reducted_record_cnt, reducted_percent), + &format!( + "Data reduction: {} events ({:.2}%)", + reducted_record_cnt, reducted_percent + ), ) .ok(); - println!( - - ); + println!(); println!(); _print_unique_results( diff --git a/src/main.rs b/src/main.rs index 7aeb3b2d..e3c95f2e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -425,7 +425,8 @@ impl App { fn print_contributors(&self) { match fs::read_to_string("./contributors.txt") { Ok(contents) => { - write_color_buffer(&BufferWriter::stdout(ColorChoice::Always), None, &contents).ok(); + write_color_buffer(&BufferWriter::stdout(ColorChoice::Always), None, &contents) + .ok(); } Err(err) => { AlertMessage::alert(&format!("{}", err)).ok();