Skip to content

Commit d9aa22c

Browse files
committed
ref: cargo clippy
1 parent 333eaf6 commit d9aa22c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

adapter/rest/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ async fn execute_flow_to_hyper_response(
227227
kind: Some(Kind::StringValue(x)),
228228
} = v
229229
{
230-
return Some((k.clone(), x.clone()));
230+
Some((k.clone(), x.clone()))
231231
} else {
232-
return None;
232+
None
233233
}
234234
})
235235
.collect();

0 commit comments

Comments
 (0)