From ac2d15b77661d48b30d99ef2199423586652aa4b Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Mon, 22 Jun 2020 11:08:28 -0400 Subject: [PATCH] rustfmt --- src/parse/import.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/parse/import.rs b/src/parse/import.rs index 84f8d84..cfe9a8f 100644 --- a/src/parse/import.rs +++ b/src/parse/import.rs @@ -56,7 +56,9 @@ impl<'a> Parser<'a> { let paths = [ path_buf.with_file_name(name).with_extension("scss"), - path_buf.with_file_name(format!("_{}", name.to_str().unwrap())).with_extension("scss"), + path_buf + .with_file_name(format!("_{}", name.to_str().unwrap())) + .with_extension("scss"), path_buf.clone(), path_buf.join("index.scss"), path_buf.join("_index.scss"),