From a3bb30e9a2ce45f2b0e8177d3c189cbab7fd93ac Mon Sep 17 00:00:00 2001 From: DustInDark Date: Fri, 24 Jun 2022 23:53:42 +0900 Subject: [PATCH] cargo fmt --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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();