From 28f465ed5da0d73a2293ecd692c58fd07cc88c56 Mon Sep 17 00:00:00 2001 From: Albin Cassirer Date: Tue, 19 May 2026 17:36:28 -0700 Subject: [PATCH] codex: satisfy argument comment lint --- codex-rs/core/src/session/mod.rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/codex-rs/core/src/session/mod.rs b/codex-rs/core/src/session/mod.rs index 1b74b24f8a..702776e6c6 100644 --- a/codex-rs/core/src/session/mod.rs +++ b/codex-rs/core/src/session/mod.rs @@ -1762,8 +1762,13 @@ impl Session { return; } - self.forward_child_status_to_parent(None, parent_thread_id, &child_agent_path, status) - .await; + self.forward_child_status_to_parent( + /*turn_context*/ None, + parent_thread_id, + &child_agent_path, + status, + ) + .await; } async fn maybe_mirror_event_text_to_realtime(&self, msg: &EventMsg) {