Skip to content

Commit 48d7de8

Browse files
committed
chore: Appease the linting gods
Signed-off-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com>
1 parent 061f45b commit 48d7de8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/file/format/gura.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub fn parse(
1414
match val.kind {
1515
ValueKind::Table(map) => Ok(map),
1616

17-
_ => Ok(Map::new())
17+
_ => Ok(Map::new()),
1818
}
1919
}
2020

@@ -50,8 +50,8 @@ fn from_gura_value(uri: Option<&String>, val: &GuraType) -> Value {
5050
}
5151

5252
Value::new(uri, ValueKind::Array(l))
53-
}
53+
}
5454

5555
_ => Value::new(uri, ValueKind::Nil),
5656
}
57-
}
57+
}

tests/file_gura.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,4 +196,4 @@ fn test_override_lowercase_value_for_enums() {
196196
param,
197197
EnumSettings::Bar("I have been overridden_with_lower_case".to_string())
198198
);
199-
}
199+
}

0 commit comments

Comments
 (0)