summaryrefslogtreecommitdiffstats
path: root/src/file/format/mod.rs
diff options
context:
space:
mode:
authorRadosław Kot <rdkt13@gmail.com>2021-10-17 09:36:12 +0200
committerRadosław Kot <rdkt13@gmail.com>2021-10-23 16:58:41 +0200
commit5ba9013b425b2d54b56a0f67149ceb2c50781638 (patch)
tree1754a84bef73cde196ba32115d2cb1c68ba02153 /src/file/format/mod.rs
parent583a47764a93465ce8d846a6a7273a9bd38fd554 (diff)
Apply clippy lints and format
Diffstat (limited to 'src/file/format/mod.rs')
-rw-r--r--src/file/format/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file/format/mod.rs b/src/file/format/mod.rs
index a335426..d5414f5 100644
--- a/src/file/format/mod.rs
+++ b/src/file/format/mod.rs
@@ -6,7 +6,7 @@ use std::collections::HashMap;
use std::error::Error;
use crate::map::Map;
-use crate::{value::Value, Format, file::extension::FileExtensions};
+use crate::{file::extension::FileExtensions, value::Value, Format};
#[cfg(feature = "toml")]
mod toml;
@@ -85,14 +85,14 @@ lazy_static! {
}
impl FileFormat {
- pub (crate) fn extensions(&self) -> &'static [&'static str] {
+ pub(crate) fn extensions(&self) -> &'static [&'static str] {
// It should not be possible for this to fail
// A FileFormat would need to be declared without being added to the
// ALL_EXTENSIONS map.
ALL_EXTENSIONS.get(self).unwrap()
}
- pub (crate) fn parse(
+ pub(crate) fn parse(
&self,
uri: Option<&String>,
text: &str,