Skip to content

Commit

Permalink
lint: fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
Tricked-dev committed Oct 22, 2021
1 parent b6cd0d3 commit a3a3eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
};

Expand Down

0 comments on commit a3a3eee

Please sign in to comment.