Skip to content

Commit 55c8845

Browse files
committed
Fix: Update .gitignore to recursively ignore all __pycache__ directories
- Change __pycache__/ to **/__pycache__/ for recursive pattern matching - This ensures all subdirectory __pycache__ folders are properly ignored - Prevents compiled Python cache files from being tracked in future
1 parent 73f9f97 commit 55c8845

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Byte-compiled / optimized / DLL files
2-
__pycache__/
2+
**/__pycache__/
33
*.py[cod]
44
*$py.class
55

0 commit comments

Comments
 (0)