mirror of
https://github.com/sharkdp/bat.git
synced 2025-09-08 14:22:25 +01:00
Run cargo clippy --fix --all-targets --all-features
with Rust 1.57
Clippy in the newly released Rust 1.57 found some new lints. Conveniently, all of them were fixable with `--fix`.
This commit is contained in:
@@ -195,7 +195,7 @@ impl HighlightingAssets {
|
||||
bat_warning!("Unknown theme '{}', using default.", theme)
|
||||
}
|
||||
self.get_theme_set()
|
||||
.get(self.fallback_theme.unwrap_or_else(|| Self::default_theme()))
|
||||
.get(self.fallback_theme.unwrap_or_else(Self::default_theme))
|
||||
.expect("something is very wrong if the default theme is missing")
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user