Fix clippy errors

This commit is contained in:
harupy 2022-09-10 18:42:08 +09:00
parent 80bf8b4b08
commit 48a0795aec
1 changed files with 1 additions and 2 deletions

View File

@ -380,8 +380,7 @@ where
self.checks.extend(
targets
.iter()
.map(|target| checks::check_ambiguous_variable_name(target))
.flatten(),
.flat_map(checks::check_ambiguous_variable_name),
);
}
}