style: simplify equality check

This commit is contained in:
Hamir Mahal 2024-03-11 00:40:08 -07:00 committed by Martin Nordholts
parent f29f9387b5
commit 07c26adc35
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ impl<'a> InteractivePrinter<'a> {
.content_type .content_type
.map_or(false, |c| c.is_binary() && !config.show_nonprintable); .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 None
} else { } else {
// Determine the type of syntax for highlighting // Determine the type of syntax for highlighting