Skip to content

Commit 224b414

Browse files
committed
Fixing format due to Rustfmt check failing
1 parent 14945e0 commit 224b414

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ fn process_value(
155155
graph: &mut Graph,
156156
namespace: &String,
157157
) {
158-
159158
let ns = if namespace.ends_with("/") {
160159
namespace
161160
} else {
@@ -210,8 +209,7 @@ fn process_value(
210209
));
211210

212211
for (key, val) in obj {
213-
let nested_property: Option<String> =
214-
Some(format!("{}{}", ns, key));
212+
let nested_property: Option<String> = Some(format!("{}{}", ns, key));
215213
process_value(subject_stack, &nested_property, val, graph, ns);
216214
}
217215
subject_stack.pop_back();

0 commit comments

Comments
 (0)