Skip to content

Commit eef1314

Browse files
committed
fix(lint): apply cargo fmt to tool_execution.rs
1 parent 59df5db commit eef1314

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/agent/tool_execution.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,9 @@ pub(crate) async fn execute_one_tool(
9696
});
9797
if r.success {
9898
let output = scrub_credentials(&r.output);
99-
let receipt = receipt_generator
100-
.map(|receipt_gen| receipt_gen.generate_now(call_name, &call_arguments, &output));
99+
let receipt = receipt_generator.map(|receipt_gen| {
100+
receipt_gen.generate_now(call_name, &call_arguments, &output)
101+
});
101102
Ok(ToolExecutionOutcome {
102103
output,
103104
success: true,

0 commit comments

Comments
 (0)