Skip to content

Commit

Permalink
chore: Appease the linting gods
Browse files Browse the repository at this point in the history
  • Loading branch information
polarathene committed Oct 6, 2023
1 parent 2a6ec44 commit a073e01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/file/format/gura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub fn parse(
match val.kind {
ValueKind::Table(map) => Ok(map),

_ => Ok(Map::new())
_ => Ok(Map::new()),
}
}

Expand Down Expand Up @@ -54,4 +54,4 @@ fn from_gura_value(uri: Option<&String>, val: &GuraType) -> Value {

_ => Value::new(uri, ValueKind::Nil),
}
}
}
2 changes: 1 addition & 1 deletion tests/file_gura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,4 +196,4 @@ fn test_override_lowercase_value_for_enums() {
param,
EnumSettings::Bar("I have been overridden_with_lower_case".to_string())
);
}
}

0 comments on commit a073e01

Please sign in to comment.