summaryrefslogtreecommitdiffstats
path: root/src/value.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.rs')
-rw-r--r--src/value.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/value.rs b/src/value.rs
index 4a3186b..1bba78c 100644
--- a/src/value.rs
+++ b/src/value.rs
@@ -1,8 +1,8 @@
-use std::collections::HashMap;
-use std::fmt::Display;
-use std::fmt;
use error::*;
use serde::de::{Deserialize, Deserializer, Visitor};
+use std::collections::HashMap;
+use std::fmt;
+use std::fmt::Display;
/// Underlying kind of the configuration value.
#[derive(Debug, Clone, PartialEq)]