From 1e7bfbc3ce67ce4da5c41997971d2e77c34fb730 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 15 Aug 2022 10:13:19 +0200 Subject: [PATCH] Ignore faulty clippy lint for now --- instant-segment-py/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/instant-segment-py/src/lib.rs b/instant-segment-py/src/lib.rs index e3f5c48..ff24769 100644 --- a/instant-segment-py/src/lib.rs +++ b/instant-segment-py/src/lib.rs @@ -1,3 +1,6 @@ +// borrow_deref_ref doesn't get macro detection right, allow for now +#![allow(clippy::from_iter_instead_of_collect, clippy::borrow_deref_ref)] + use std::fs::File; use std::io::{BufReader, BufWriter};