Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Aug 25, 2023
1 parent 1bfeadd commit 2b12189
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use sea_query::{Iden, IdenStatic, Quote};
use sea_query::{Iden, IdenStatic};
use strum::{EnumIter, IntoEnumIterator};

#[derive(IdenStatic, EnumIter, Copy, Clone)]
Expand Down
2 changes: 1 addition & 1 deletion sea-query-derive/tests/pass-static/simple_unit_struct.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use sea_query::{Iden, IdenStatic, Quote};
use sea_query::{Iden, IdenStatic};

#[derive(Copy, Clone, IdenStatic)]
pub struct SomeType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use sea_query::{Iden, Quote};
use sea_query::Iden;
use strum::{EnumIter, IntoEnumIterator};

#[derive(Iden, EnumIter)]
Expand Down
2 changes: 1 addition & 1 deletion sea-query-derive/tests/pass/simple_unit_struct.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use sea_query::{Iden, Quote};
use sea_query::Iden;

#[derive(Copy, Clone, Iden)]
pub struct SomeType;
Expand Down

0 comments on commit 2b12189

Please sign in to comment.