fix clippy lints

This commit is contained in:
Alexander Weiss 2025-03-02 21:28:53 +01:00
parent 002a8b2e5f
commit a32d8eb52c

View File

@ -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()