chore(build): fix clippy warnings (#213)

This commit is contained in:
Valery Antopol
2022-09-19 19:13:38 +03:00
committed by GitHub
parent 068dab124c
commit fd47800cca
18 changed files with 207 additions and 411 deletions

View File

@ -67,7 +67,7 @@ impl RecordsTransformer {
return Ok(());
}
for field in (&record.fields).iter() {
for field in record.fields.iter() {
self.type_dfs(&field.ty, exported_records)?;
}