Skip to content

Commit eaf2a7c

Browse files
committed
fix: remove redundant into_iter() for clippy
1 parent 09ef9e8 commit eaf2a7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1420,7 +1420,7 @@ async fn evaluate_with_stored_agent(
14201420

14211421
use futures::stream::{self, StreamExt};
14221422

1423-
let download_results: Vec<_> = stream::iter(task_ids.clone().into_iter())
1423+
let download_results: Vec<_> = stream::iter(task_ids.clone())
14241424
.map(|task_id| {
14251425
let hf = std::sync::Arc::clone(&hf_client);
14261426
let base = tasks_base.clone();

0 commit comments

Comments
 (0)