From f6787accd65d33ecf4a5d521cbaac8aee42cd3a3 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 31 May 2026 14:19:29 -0500 Subject: [PATCH] fix(agentic): inline format arg in writeln! to satisfy clippy::uninlined_format_args Rust 1.88 enforces clippy::uninlined_format_args as a style lint under -D warnings. Change `writeln!(stdin, "{}", password)` to the inline form `writeln!(stdin, "{password}")`. --- src-tauri/src/commands/agentic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/commands/agentic.rs b/src-tauri/src/commands/agentic.rs index 4b1a79ea..c9b71ad5 100644 --- a/src-tauri/src/commands/agentic.rs +++ b/src-tauri/src/commands/agentic.rs @@ -25,7 +25,7 @@ pub fn run_sudo_command(password: &str, args: &[&str]) -> Result