Use `!theme.is_empty()`

This commit is contained in:
Mohamed Abdelnour 2021-05-21 14:19:15 +02:00 committed by David Peter
parent 07d4179274
commit 304ee1489c
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ impl HighlightingAssets {
bat_warning!("Theme '{}' is deprecated, using 'ansi' instead.", theme);
return self.get_theme("ansi");
}
if theme != "" {
if !theme.is_empty() {
bat_warning!("Unknown theme '{}', using default.", theme)
}
&self.theme_set.themes[self.fallback_theme.unwrap_or_else(|| Self::default_theme())]