Skip to content

Commit b735e30

Browse files
authored
build: Ignore Python __pycache__ directories (#2935)
The `__pycache__` directory is automatically generated by the Python interpreter to store compiled bytecode (`.pyc` files). These files are build artifacts specific to the local environment and should not be tracked in version control. This change adds a rule to `.gitignore` to exclude these directories, keeping the repository clean.
1 parent 05855e4 commit b735e30

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
# Python requirements build files
77
**/__build__/**/*
8+
**/__pycache__/**/*
89

910
# IntelliJ files
1011
**/.idea/**/*

0 commit comments

Comments
 (0)