Remove unnecessary parenthesis

This commit is contained in:
sharkdp 2020-09-14 10:59:08 +02:00 committed by David Peter
parent 6017989c4c
commit 5df449bcf3
1 changed files with 2 additions and 2 deletions

View File

@ -177,8 +177,8 @@ impl App {
term_width: maybe_term_width.unwrap_or(Term::stdout().size().1 as usize),
loop_through: !(self.interactive_output
|| self.matches.value_of("color") == Some("always")
|| (self.matches.value_of("decorations") == Some("always")
|| self.matches.is_present("force-colorization"))),
|| self.matches.value_of("decorations") == Some("always")
|| self.matches.is_present("force-colorization")),
tab_width: self
.matches
.value_of("tabs")