Run nightly Clippy over the Ruff repo (#5670)

## Summary

This is the result of running `cargo +nightly clippy --workspace
--all-targets --all-features -- -D warnings` and fixing all violations.
Just wanted to see if there were any interesting new checks on nightly
👀
This commit is contained in:
Charlie Marsh 2023-07-10 23:44:38 -04:00 committed by GitHub
parent e7e2f44440
commit 4dee49d6fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 220 additions and 470 deletions

View file

@ -19,7 +19,7 @@ pub(crate) fn derive_impl(input: DeriveInput) -> syn::Result<proc_macro2::TokenS
}) => {
let mut output = vec![];
for field in fields.named.iter() {
for field in &fields.named {
let docs: Vec<&Attribute> = field
.attrs
.iter()