Skip to content

Commit d4cd7fa

Browse files
authored
Fix __pycache__ in .gitignore. NFC (#24048)
We were ignoring all `.pyc` files which is normally enough to also ignore all `__pycache__` directories but I've seen some machines where `__pycache__` also contains files ending in `.er`.
1 parent b5f9697 commit d4cd7fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*.swp
1111

1212
# Compiled python files
13-
*.pyc
13+
__pycache__
1414

1515
# Default emscripten cache
1616
/cache

0 commit comments

Comments
 (0)