style: fix cargo fmt formatting

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Valerio 2026-03-24 17:27:15 +01:00
parent ea9c783bc5
commit b92c0ed186
2 changed files with 8 additions and 6 deletions

View file

@ -962,7 +962,10 @@ async fn run_crawl(cli: &Cli) -> Result<(), String> {
);
if result.errors > 0 {
Err(format!("{} of {} pages failed", result.errors, result.total))
Err(format!(
"{} of {} pages failed",
result.errors, result.total
))
} else {
Ok(())
}