From 5df449bcf370666b666835d6a307de8469b41850 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Mon, 14 Sep 2020 10:59:08 +0200 Subject: [PATCH] Remove unnecessary parenthesis --- src/bin/bat/app.rs | 4 ++-- 1 file 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")