Try removing needless collect

This commit is contained in:
ManyTheFish 2023-03-09 11:28:10 +01:00
parent 5deea631ea
commit dff2715ef3

View File

@ -101,7 +101,6 @@ pub async fn list_indexes(
})?;
// Won't cause to open all indexes because IndexView doesn't keep the `Index` opened.
// error when trying to fix it: the trait `ExactSizeIterator` is not implemented for `Flatten<IntoIter<Option<IndexView>>>`
#[allow(clippy::needless_collect)]
let indexes: Vec<IndexView> = indexes.into_iter().flatten().collect();
let ret = paginate.as_pagination().auto_paginate_sized(indexes.into_iter());