From ddb451cef203ae442c31de50530f3965fdcb3aed Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 10 May 2026 19:07:28 +0100 Subject: [PATCH] Suppress a lint for .get().is_some() Signed-off-by: Ian Jackson --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 56f957c..165b846 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,6 +12,7 @@ #![allow(clippy::style)] #![allow(clippy::complexity)] +#![allow(clippy::unnecessary_get_then_check)] // rust-lang/rust-clippy#16990 pub mod prelude; -- 2.30.2