Skip to content

Commit

Permalink
Merge pull request #193 from greyblake/fix-formatting
Browse files Browse the repository at this point in the history
Fix formatting
  • Loading branch information
greyblake authored Nov 8, 2024
2 parents 87b51c5 + a9f38df commit 265c0dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nutype_macros/src/any/models.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use core::fmt::Debug;
use kinded::Kinded;
use proc_macro2::TokenStream;
use quote::ToTokens;
use core::fmt::Debug;
use syn::Field;

use crate::common::models::{CustomFunction, Guard, RawGuard, SpannedItem, TypeTrait};
Expand Down
2 changes: 1 addition & 1 deletion nutype_macros/src/common/models.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mod error_type_path;

use kinded::Kinded;
use core::{fmt::Debug, ops::Add};
use kinded::Kinded;
use std::collections::HashSet;
use syn::Generics;

Expand Down
2 changes: 1 addition & 1 deletion test_suite/tests/any.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ use nutype::nutype;
extern crate alloc;
use alloc::borrow::Cow;
use core::cmp::{Ordering, PartialEq, PartialOrd};
use std::collections::{HashMap, HashSet};
use core::fmt::Debug;
use core::hash::Hash;
use std::collections::{HashMap, HashSet};
use test_suite::test_helpers::traits::*;

// Inner custom type, which is unknown to nutype
Expand Down

0 comments on commit 265c0dd

Please sign in to comment.