Remove obsolete clippy suppression

Missed this in b6269438e9.
This commit is contained in:
Johannes Altmanninger
2025-03-03 11:39:01 +01:00
parent 76923de6cf
commit 335462697e

View File

@@ -491,7 +491,6 @@ pub fn best_color(candidates: &[RgbColor], support: ColorSupport) -> RgbColor {
/// Return the internal color code representing the specified color.
/// TODO: This code should be refactored to enable sharing with builtin_set_color.
/// In particular, the argument parsing still isn't fully capable.
#[allow(clippy::collapsible_else_if)]
pub fn parse_color(var: &EnvVar, is_background: bool) -> RgbColor {
let mut result = parse_color_maybe_none(var, is_background);
if result.is_none() {