From a75b6cfabebeb55de3d2c9b98d8dbe47258979e2 Mon Sep 17 00:00:00 2001 From: elipeter Date: Tue, 24 Jun 2025 22:51:16 +0200 Subject: [PATCH] fix: Remove unnecessary whitespace in diagnostics output handling --- src/commands/scan.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/scan.rs b/src/commands/scan.rs index 06571b48..4bcfa674 100644 --- a/src/commands/scan.rs +++ b/src/commands/scan.rs @@ -162,7 +162,6 @@ pub fn scan_with_index_parallel( if let Some(max) = cfg.output.max_results { diags.truncate(max as usize); } - - // Flatten + Ok(diags) }