summaryrefslogtreecommitdiffstats
path: root/src/ui.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-11-08 20:09:16 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-11-08 20:53:41 +0100
commit3ae736b019b7c8bf749da8bc15d8948faaba1855 (patch)
tree7f4a50670e95df8d2088899666edbc57960dc5ca /src/ui.rs
parent54106763f8e5bd81d0255d9537c5334dc68b1b30 (diff)
Remove unused imports, sort imports
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/ui.rs')
-rw-r--r--src/ui.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui.rs b/src/ui.rs
index f475ebb..fe7bec7 100644
--- a/src/ui.rs
+++ b/src/ui.rs
@@ -1,12 +1,12 @@
//! Utility functions for the UI
+use std::collections::BTreeMap;
use std::io::Write;
use std::path::Path;
-use std::collections::BTreeMap;
-use anyhow::anyhow;
-use anyhow::Result;
use anyhow::Error;
+use anyhow::Result;
+use anyhow::anyhow;
use handlebars::Handlebars;
use itertools::Itertools;