fix(gitignore): ignore __pycache__ at all depths (#7863)

`/__pycache__/*` only covered the root level. Replace with `**/__pycache__/`
so that generated bytecode directories in lib/tools/ and elsewhere are ignored.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Igor Velkov 2026-03-05 03:49:43 +02:00 committed by Igor
parent ae085455e3
commit b7af31d65b

2
.gitignore vendored
View File

@ -22,7 +22,7 @@ ubuntu-*-cloudimg-console.log
.DS_Store
*~
*.swp
/__pycache__/*
**/__pycache__/
# Mainly generated by merge tools like 'meld'
*.orig