Skip to content

Commit 6255d7c

Browse files
author
Andrew
committed
metaconfig 5
1 parent 78ebef5 commit 6255d7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dsc_lib/src/discovery/command_discovery.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ impl CommandDiscovery {
6767
Ok(v) => {
6868
return Ok(v);
6969
},
70-
Err(e) => { return Err(DscError::Operation(format!("{}", e))); }
70+
Err(e) => { return Err(DscError::Operation(format!("{e}"))); }
7171
}
7272
} else if v.setting != serde_json::Value::Null {
7373
match serde_json::from_value::<ResourcePathSetting>(v.setting) {
7474
Ok(v) => {
7575
return Ok(v);
7676
},
77-
Err(e) => { return Err(DscError::Operation(format!("{}", e))); }
77+
Err(e) => { return Err(DscError::Operation(format!("{e}"))); }
7878
}
7979
}
8080
}

0 commit comments

Comments
 (0)