From 28cb89eadb67b6526b026105919a772ce8e726a3 Mon Sep 17 00:00:00 2001 From: "Alexis (Poliorcetics) Bourget" Date: Sat, 8 Oct 2022 20:03:22 +0200 Subject: [PATCH] chore: fix clippy linting --- xtask/src/themelint.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/xtask/src/themelint.rs b/xtask/src/themelint.rs index 26d1cb04e..06dfae407 100644 --- a/xtask/src/themelint.rs +++ b/xtask/src/themelint.rs @@ -171,7 +171,7 @@ pub fn lint(file: String) -> Result<(), DynError> { let message = m.replace("$THEME", theme.as_str()); println!("{}", message); }); - Err(format!("{} has issues", file.clone().as_str()).into()) + Err(format!("{} has issues", file).into()) } else { Ok(()) } @@ -183,8 +183,7 @@ pub fn lint_all() -> Result<(), DynError> { let ok_files_count = files .into_iter() .filter_map(|path| lint(path.replace(".toml", "")).ok()) - .collect::>() - .len(); + .count(); if files_count != ok_files_count { Err(format!(