clippy: allow unused generic parameter

This commit is contained in:
Jon Häggblad
2023-04-06 12:47:05 +02:00
parent 3d4123aca5
commit ee656aa3ef
+1
View File
@@ -314,6 +314,7 @@ pub(crate) struct InMemStorage;
#[cfg(test)]
impl InMemStorage {
#[allow(unused)]
#[allow(clippy::extra_unused_type_parameters)]
async fn init<P: AsRef<Path> + Send>() -> Result<Self, StorageError> {
todo!()
}