Use `Result::is_ok`

pull/355/head
Gilad Woloch 3 years ago committed by Arijit Basu
parent 45ad449eb3
commit 46287f6373

@ -23,7 +23,7 @@ use tui::widgets::{Block, Borders as TuiBorders, Cell, List, ListItem, Paragraph
use tui::Frame;
lazy_static! {
pub static ref NO_COLOR: bool = env::var("NO_COLOR").ok().map(|_| true).unwrap_or(false);
pub static ref NO_COLOR: bool = env::var("NO_COLOR").is_ok();
pub static ref DEFAULT_STYLE: TuiStyle = TuiStyle::default();
}

Loading…
Cancel
Save