Disable lint with false positive

This commit is contained in:
Thomas Zahner 2024-04-24 16:38:06 +02:00
parent e0b4c73987
commit 730f5310b1

View file

@ -1,3 +1,6 @@
// Disable lint, clippy thinks that InputSource has inner mutability, but this seems like a flase positive
#![allow(clippy::mutable_key_type)]
use std::collections::{HashMap, HashSet};
use crate::archive::Suggestion;