Skip to content

Commit

Permalink
Fix checks
Browse files Browse the repository at this point in the history
  • Loading branch information
DanikVitek committed Jan 30, 2025
1 parent 6d9691a commit fd82905
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion borsh-derive/src/internals/attributes/field/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,6 @@ mod tests_schema {
},
};

use quote::quote;
use syn::{parse_quote, Attribute, ItemStruct};

use super::schema;
Expand Down
5 changes: 4 additions & 1 deletion borsh-derive/src/internals/schema/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ use std::collections::HashSet;

use proc_macro2::TokenStream as TokenStream2;
use quote::quote;
use syn::{parse_quote, punctuated::Punctuated, token::Comma, Field, Fields, GenericParam, Generics, Ident, Path, Type, WherePredicate};
use syn::{
parse_quote, punctuated::Punctuated, token::Comma, Field, Fields, GenericParam, Generics,
Ident, Path, Type, WherePredicate,
};

use crate::internals::{attributes::field, generics};

Expand Down

0 comments on commit fd82905

Please sign in to comment.