Skip to content

Commit f883886

Browse files
committed
chore: formatting fix
Signed-off-by: Onuralp SEZER <thunderbirdtr@gmail.com>
1 parent 647af54 commit f883886

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/source.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ impl From<&str> for Source {
137137
return Self::Glob(s.to_string());
138138
}
139139

140-
let path = PathBuf::from(s).canonicalize().unwrap_or_else(|_| PathBuf::from(s));
140+
let path = PathBuf::from(s)
141+
.canonicalize()
142+
.unwrap_or_else(|_| PathBuf::from(s));
141143

142144
// Check if it's a directory
143145
if path.is_dir() {

0 commit comments

Comments
 (0)