summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/file/format/dhall.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/file/format/dhall.rs b/src/file/format/dhall.rs
index c088d5e..99da12c 100644
--- a/src/file/format/dhall.rs
+++ b/src/file/format/dhall.rs
@@ -25,9 +25,7 @@ fn from_dhall_value(uri: Option<&String>, value: serde_dhall::SimpleValue) -> Va
serde_dhall::NumKind::Integer(i) => Value::new(uri, ValueKind::Integer(i)),
serde_dhall::NumKind::Double(d) => Value::new(uri, ValueKind::Float(f64::from(d))),
},
- serde_dhall::SimpleValue::Text(string) => {
- Value::new(uri, ValueKind::String(string))
- }
+ serde_dhall::SimpleValue::Text(string) => Value::new(uri, ValueKind::String(string)),
serde_dhall::SimpleValue::List(list) => Value::new(
uri,
ValueKind::Array(list.into_iter().map(|v| from_dhall_value(uri, v)).collect()),