Skip to content

Commit 61d3261

Browse files
committed
style: clean up imports
1 parent 90df25a commit 61d3261

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/app.rs

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
use std::{
2-
hash::{DefaultHasher, Hash, Hasher},
3-
path::PathBuf,
4-
sync::{Arc, Mutex},
5-
};
6-
1+
use self::{data::Data, data_display_options::DataDisplayOptions};
72
#[cfg(not(target_arch = "wasm32"))]
83
use anyhow::{bail, Context};
94
use data::filter::{Comparator, FieldSpecifier, FilterConfig, FilterOn};
@@ -14,8 +9,11 @@ use egui::{
149
use egui_extras::{Column, TableBuilder};
1510
use log::info;
1611
use shortcut::Shortcuts;
17-
18-
use self::{data::Data, data_display_options::DataDisplayOptions};
12+
use std::{
13+
hash::{DefaultHasher, Hash, Hasher},
14+
path::PathBuf,
15+
sync::{Arc, Mutex},
16+
};
1917

2018
mod data;
2119
mod data_display_options;

0 commit comments

Comments
 (0)