cargo fmt

This commit is contained in:
DustInDark
2022-06-22 22:46:40 +09:00
parent 8a47d37c64
commit 4623777ba4
2 changed files with 7 additions and 6 deletions

View File

@@ -412,13 +412,13 @@ fn emit_csv<W: std::io::Write>(
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(

View File

@@ -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();