From 24f376591758ac27fc6464ec73f098c2bb1cc01c Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Fri, 12 Jun 2026 22:31:16 -0500 Subject: [PATCH] fix(fmt): apply rustfmt formatting to proxmox commands Multi-argument method calls reformatted to comply with rustfmt line-length rules. --- src-tauri/src/commands/proxmox.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src-tauri/src/commands/proxmox.rs b/src-tauri/src/commands/proxmox.rs index b915aa9f..79398c87 100644 --- a/src-tauri/src/commands/proxmox.rs +++ b/src-tauri/src/commands/proxmox.rs @@ -1894,7 +1894,11 @@ pub async fn update_cluster_notes( let path = "cluster/config"; let body = serde_json::json!({ "notes": notes }); let _: serde_json::Value = client_guard - .put(path, &body, Some(client_guard.ticket.as_deref().unwrap_or(""))) + .put( + path, + &body, + Some(client_guard.ticket.as_deref().unwrap_or("")), + ) .await .map_err(|e| format!("Failed to update cluster notes: {}", e))?;