fix(fmt): apply rustfmt formatting to proxmox commands
All checks were successful
Test / frontend-tests (pull_request) Successful in 1m42s
Test / frontend-typecheck (pull_request) Successful in 1m57s
PR Review Automation / review (pull_request) Successful in 4m12s
Test / rust-fmt-check (pull_request) Successful in 13m13s
Test / rust-clippy (pull_request) Successful in 15m7s
Test / rust-tests (pull_request) Successful in 17m1s

Multi-argument method calls reformatted to comply with rustfmt line-length rules.
This commit is contained in:
Shaun Arman 2026-06-12 22:31:16 -05:00
parent 2a973aed59
commit 24f3765917

View File

@ -1894,7 +1894,11 @@ pub async fn update_cluster_notes(
let path = "cluster/config"; let path = "cluster/config";
let body = serde_json::json!({ "notes": notes }); let body = serde_json::json!({ "notes": notes });
let _: serde_json::Value = client_guard 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 .await
.map_err(|e| format!("Failed to update cluster notes: {}", e))?; .map_err(|e| format!("Failed to update cluster notes: {}", e))?;