Skip to content

Commit 549e10a

Browse files
committed
Fix clippy
1 parent 71f29ef commit 549e10a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsc/src/mcp/invoke_dsc_resource.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ impl McpServer {
9999
DscOperation::Delete => {
100100
match resource.delete(&properties_json) {
101101
Ok(()) => Ok(ResourceOperationResult::DeleteResult { success: true }),
102-
Err(e) => return Err(McpError::internal_error(e.to_string(), None)),
102+
Err(e) => Err(McpError::internal_error(e.to_string(), None)),
103103
}
104104
},
105105
DscOperation::Export => {

0 commit comments

Comments
 (0)