Skip to content

Commit 032217b

Browse files
fix: added comma
1 parent 90b7617 commit 032217b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/coding_discovery_tools/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
MAX_CONFIG_FILE_SIZE = 50 * 1024 # 50KB in bytes
3737
MAX_SEARCH_DEPTH = 10 # Maximum directory depth to search recursively
3838
SKIP_DIRS = frozenset[str]({
39-
'.git', 'node_modules', 'venv', '__pycache__', '.venv', 'vendor', '.idea', '.vscode', 'Library', '.Trash', '.cache'
40-
'Photos', 'Music', 'Movies', 'Pictures', 'Public', 'Templates', 'Videos',
39+
'.git', 'node_modules', 'venv', '__pycache__', '.venv', 'vendor', '.idea', '.vscode', 'Library', '.Trash', '.cache',
40+
'Photos', 'Music', 'Movies', 'Pictures', 'Public', 'Templates', 'Videos'
4141
})
4242

4343
# System directories to skip when searching from root (macOS/Unix)

scripts/coding_discovery_tools/windows_extraction_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def should_skip_path(path: Path, system_dirs: Optional[set] = None) -> bool:
7272
True if path should be skipped, False otherwise
7373
"""
7474
# Skip common project directories (check all path parts for nested matches)
75-
if SKIP_PATTERN.search(str(path)) is not None:
75+
if SKIP_PATTERN.search(path) is not None:
7676
return True
7777

7878
# Skip system directories if provided (Windows-specific)

0 commit comments

Comments
 (0)