Fix clippy errors (#2973)

This commit is contained in:
Hocuri
2022-01-14 17:34:19 +01:00
committed by GitHub
parent c9a70f149d
commit 1e9e308df3
2 changed files with 2 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ impl Smtp {
}
}
for recipients_chunk in recipients.chunks(chunk_size).into_iter() {
for recipients_chunk in recipients.chunks(chunk_size) {
let recipients_display = recipients_chunk
.iter()
.map(|x| x.as_ref())