desktop: rustfmt the SyncOutcome literal
Desktop (Tauri) / Windows installer (cross-compiled) (push) Successful in 2m2s
Desktop (Tauri) / Tauri desktop (Linux) (push) Successful in 3m56s

One hunk from run 2908. Clippy, all 61 tests, and vue-tsc (run 2907) had
already passed on the same code.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SreJkbxB4gx8pPsu8QbLPi
This commit is contained in:
2026-07-26 00:33:35 -04:00
co-authored by Claude Opus 5
parent fe683595df
commit 6bef07ff83
+1 -5
View File
@@ -54,9 +54,5 @@ pub async fn run_cycle(db: &Db, base_url: &str, token: &str) -> Result<SyncOutco
state::status(&conn).map_err(|e| e.to_string())?
};
Ok(SyncOutcome {
push,
pull,
status,
})
Ok(SyncOutcome { push, pull, status })
}