mirror of
https://github.com/sharkdp/bat
synced 2024-11-16 00:47:58 +00:00
Use !theme.is_empty()
This commit is contained in:
parent
07d4179274
commit
304ee1489c
1 changed files with 1 additions and 1 deletions
|
@ -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())]
|
||||
|
|
Loading…
Reference in a new issue