style: run cargo fmt to fix formatting
All checks were successful
PR Review Automation / review (pull_request) Successful in 2m19s

Fix formatting in integrations.rs and ollama/installer.rs per cargo fmt.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Shaun Arman 2026-06-05 08:43:50 -05:00
parent 9b8f4fffe2
commit 57fff0c8a2
2 changed files with 4 additions and 4 deletions

View File

@ -333,7 +333,9 @@ pub async fn initiate_oauth(
app_data_dir,
integration_webviews,
mcp_connections,
pending_approvals: Arc::new(tokio::sync::Mutex::new(std::collections::HashMap::new())),
pending_approvals: Arc::new(tokio::sync::Mutex::new(
std::collections::HashMap::new(),
)),
};
while let Some(callback) = callback_rx.recv().await {
tracing::info!("Received OAuth callback for state: {}", callback.state);

View File

@ -250,9 +250,7 @@ pub async fn start_ollama_service() -> anyhow::Result<bool> {
// On Windows, Ollama runs as a service, check if we can start it
tracing::info!("Attempting to start Ollama on Windows...");
if let Some(ollama_bin) = find_ollama_binary() {
let result = std::process::Command::new(&ollama_bin)
.arg("serve")
.spawn();
let result = std::process::Command::new(&ollama_bin).arg("serve").spawn();
match result {
Ok(_) => {