summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsharkdp <davidpeter@web.de>2020-09-14 10:59:08 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2020-09-14 11:24:14 +0200
commit5df449bcf370666b666835d6a307de8469b41850 (patch)
tree7c5aa75a18ac134276d7c17d26bcc605374fc8c3 /src
parent6017989c4cb1683cc7d454d0f9175022e973ccee (diff)
Remove unnecessary parenthesis
Diffstat (limited to 'src')
-rw-r--r--src/bin/bat/app.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/bat/app.rs b/src/bin/bat/app.rs
index b1122f0b..8249e3c9 100644
--- a/src/bin/bat/app.rs
+++ b/src/bin/bat/app.rs
@@ -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")