From 0a75de07a4d81a2175bc1ff4855054daf7042596 Mon Sep 17 00:00:00 2001 From: Robert Guss Date: Tue, 29 Apr 2025 15:42:48 -0400 Subject: [PATCH] remove comments --- utils/crawl_local_files.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils/crawl_local_files.py b/utils/crawl_local_files.py index 4fbf6a6..4ba1342 100644 --- a/utils/crawl_local_files.py +++ b/utils/crawl_local_files.py @@ -83,7 +83,6 @@ def crawl_local_files(directory, include_patterns=None, exclude_patterns=None, m excluded = True break - # --- Inclusion Check (remains the same) --- included = False if include_patterns: for pattern in include_patterns: @@ -97,7 +96,6 @@ def crawl_local_files(directory, include_patterns=None, exclude_patterns=None, m # Skip if not included or if excluded (by either method) if not included or excluded: continue - # --- End Exclusion/Inclusion Logic --- # Check file size if max_file_size and os.path.getsize(filepath) > max_file_size: