From c2794dcb1da06608cf2db74bb7a1eeb776ad9816 Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Thu, 18 Dec 2025 14:07:33 -0700 Subject: [PATCH] cargo fmt --- signal-gateway-code-tool/src/cached.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/signal-gateway-code-tool/src/cached.rs b/signal-gateway-code-tool/src/cached.rs index 868b111..04a3428 100644 --- a/signal-gateway-code-tool/src/cached.rs +++ b/signal-gateway-code-tool/src/cached.rs @@ -209,9 +209,10 @@ fn extract_files( // Apply glob filter if configured if let Some(glob_filter) = glob_filter - && !glob_filter.is_match(&path) { - continue; - } + && !glob_filter.is_match(&path) + { + continue; + } // Read file contents let mut contents = Vec::new();