diff --git a/dyesub-tool/src/main.rs b/dyesub-tool/src/main.rs index 325c2b7..f5e5a9f 100644 --- a/dyesub-tool/src/main.rs +++ b/dyesub-tool/src/main.rs @@ -3,8 +3,8 @@ use svg::*; use askama::Template; use derive_more::From; -use std::{fs::OpenOptions, io::Write}; use lazy_static::lazy_static; +use std::{fs::OpenOptions, io::Write}; #[derive(Template)] #[template(path = "document.xml")] @@ -50,4 +50,4 @@ fn main() -> Result<(), Error> { }; write!(file, "{}", document.render()?)?; Ok(()) -} \ No newline at end of file +}