summaryrefslogtreecommitdiffstats
path: root/src/file/source/file.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file/source/file.rs')
-rw-r--r--src/file/source/file.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/file/source/file.rs b/src/file/source/file.rs
index 12805fd..75634dd 100644
--- a/src/file/source/file.rs
+++ b/src/file/source/file.rs
@@ -1,13 +1,12 @@
-use std::error::Error;
-
-use file::format::ALL_EXTENSIONS;
use std::env;
+use std::error::Error;
use std::fs;
use std::io::{self, Read};
use std::iter::Iterator;
use std::path::{Path, PathBuf};
-use super::{FileFormat, FileSource};
+use crate::file::format::ALL_EXTENSIONS;
+use crate::file::{FileFormat, FileSource};
/// Describes a file sourced from a file
#[derive(Clone, Debug)]