From bb6034e7651e56530d0a17c9447a050d9de7f030 Mon Sep 17 00:00:00 2001 From: Pedro <> Date: Mon, 16 Feb 2026 22:11:42 -0500 Subject: [PATCH] style(onboard): fix cargo fmt formatting Co-Authored-By: Claude Opus 4.6 --- src/onboard/wizard.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/onboard/wizard.rs b/src/onboard/wizard.rs index 5a44826..b352d2a 100644 --- a/src/onboard/wizard.rs +++ b/src/onboard/wizard.rs @@ -887,9 +887,7 @@ fn fetch_anthropic_models(api_key: Option<&str>) -> Result> { let status = response.status(); if !status.is_success() { let body = response.text().unwrap_or_default(); - bail!( - "Anthropic model list request failed (HTTP {status}): {body}" - ); + bail!("Anthropic model list request failed (HTTP {status}): {body}"); } let payload: Value = response @@ -1475,7 +1473,9 @@ fn setup_provider(workspace_dir: &Path) -> Result<(String, String, String)> { } else { print_bullet(&format!( "Get your API key at: {}", - style("https://console.anthropic.com/settings/keys").cyan().underlined() + style("https://console.anthropic.com/settings/keys") + .cyan() + .underlined() )); print_bullet("Or run `claude setup-token` to get an OAuth setup-token."); println!();