From a32d8eb52c04ae486c34fe50ad79829d90ec2098 Mon Sep 17 00:00:00 2001 From: Alexander Weiss Date: Sun, 2 Mar 2025 21:28:53 +0100 Subject: [PATCH] fix clippy lints --- src/config/progress_options.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config/progress_options.rs b/src/config/progress_options.rs index 8adf3f7..3f24f14 100644 --- a/src/config/progress_options.rs +++ b/src/config/progress_options.rs @@ -54,6 +54,7 @@ impl ProgressOptions { } } +#[allow(clippy::literal_string_with_formatting_args)] impl ProgressBars for ProgressOptions { type P = RusticProgress; @@ -116,6 +117,7 @@ enum ProgressType { #[derive(Debug, Clone)] pub struct RusticProgress(ProgressBar, ProgressType); +#[allow(clippy::literal_string_with_formatting_args)] impl Progress for RusticProgress { fn is_hidden(&self) -> bool { self.0.is_hidden()