From a3a3eee90fb4d78d9efff6b027edd97a64b86b57 Mon Sep 17 00:00:00 2001 From: Tricked <72335827+SkyBlockDev@users.noreply.github.com> Date: Fri, 22 Oct 2021 13:08:56 +0200 Subject: [PATCH] lint: fix clippy error --- src/commands/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/mod.rs b/src/commands/mod.rs index b354f2c..8fbebca 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -21,7 +21,7 @@ pub async fn handle_match(data: ArgMatches) -> Result<()> { let now = Instant::now(); let time = format_duration(now.duration_since(started)).to_string(); let formatted_date = format!("{}us", REG.replace(&time, "")); - println!(""); + println!(); println!("{} Done in {}", ">".red(), formatted_date.green()); };