cargo fix

This commit is contained in:
Dmitry Belyaev 2023-07-19 14:40:56 +03:00
parent cc5ab52f32
commit 9246d06783
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ impl From<SourceQuestionsBatch> for Vec<Question> {
.map(|item| item.clone().into())
.collect();
let batch_info = BatchInfo::from(src);
result.iter_mut().for_each(|mut question| {
result.iter_mut().for_each(|question| {
question.batch_info = batch_info.clone();
});