Skip to content

Commit a073e01

Browse files
committed
chore: Appease the linting gods
1 parent 2a6ec44 commit a073e01

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/file/format/gura.rs

Lines changed: 2 additions & 2 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

@@ -54,4 +54,4 @@ fn from_gura_value(uri: Option<&String>, val: &GuraType) -> Value {
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)