Fix clippy issues

This commit is contained in:
Louis Dureuil 2023-11-06 11:19:31 +01:00
parent 1bccf2079e
commit cbaa54cafd
No known key found for this signature in database
11 changed files with 25 additions and 25 deletions

View file

@ -1292,7 +1292,7 @@ impl IndexScheduler {
|| must_stop_processing.get(),
)?;
let document_ids = documents.iter().cloned().flatten().collect();
let document_ids = documents.iter().flatten().cloned().collect();
let (new_builder, user_result) = builder.remove_documents(document_ids)?;
builder = new_builder;