chore: Add Python cache to .gitignore and remove from repo

- Add __pycache__/ and Python compiled files to .gitignore
- Remove accidentally committed __pycache__ directory
- Prevent future Python cache files from being tracked

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Florian Kinder
2025-07-12 13:17:22 +09:00
parent f86d9ef67f
commit 9a401315f5
3 changed files with 5 additions and 0 deletions

5
.gitignore vendored
View File

@ -1,2 +1,7 @@
# IDE
.idea
# Python
__pycache__/
*.py[cod]
*$py.class