From 07c26adc357f70a48f2b412008d5c37d43e084c5 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Mon, 11 Mar 2024 00:40:08 -0700 Subject: [PATCH] style: simplify equality check --- src/printer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/printer.rs b/src/printer.rs index 959ca8f6..282f0fe1 100644 --- a/src/printer.rs +++ b/src/printer.rs @@ -265,7 +265,7 @@ impl<'a> InteractivePrinter<'a> { .content_type .map_or(false, |c| c.is_binary() && !config.show_nonprintable); - let highlighter_from_set = if is_printing_binary || config.colored_output == false { + let highlighter_from_set = if is_printing_binary || !config.colored_output { None } else { // Determine the type of syntax for highlighting