Skip to content

Commit

Permalink
move imports to top of file
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdotink committed Dec 26, 2023
1 parent 0be9eb8 commit 7d4b465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zap/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use std::{collections::HashSet, fmt::Display};

#[derive(Debug, Clone)]
pub struct Config<'src> {
pub tydecls: Vec<TyDecl<'src>>,
Expand Down Expand Up @@ -171,8 +173,6 @@ impl<'src> Struct<'src> {
}
}

use std::{collections::HashSet, fmt::Display};

#[derive(Debug, Clone, Copy, Default)]
pub struct Range {
min: Option<f64>,
Expand Down

0 comments on commit 7d4b465

Please sign in to comment.