style(proxy): apply rustfmt wrapping to legacy function_call branch

CI cargo fmt --check failed on transform_codex_chat.rs (the wrapping
introduced upstream did not match rustfmt 1.95.0). Apply cargo fmt so the
chat_legacy_function_call_to_response_item call uses the expected layout.
This commit is contained in:
Jason
2026-06-22 10:59:09 +08:00
parent c797b2a3fb
commit 92930461b7
@@ -1414,11 +1414,9 @@ fn chat_tool_calls_to_response_output_items(
));
}
} else if let Some(function_call) = message.get("function_call") {
if let Some(item) = chat_legacy_function_call_to_response_item(
function_call,
reasoning,
tool_context,
) {
if let Some(item) =
chat_legacy_function_call_to_response_item(function_call, reasoning, tool_context)
{
output.push(item);
}
}