dae5cea16b
- Remove unused 'import websockets.exceptions' from main.py (no reference to websockets.exceptions.* anywhere in the file; all WS handlers use broad Exception catches) - Add .gitignore with __pycache__/, *.pyc, .venv/, and other standard Python excludes so bytecode no longer shows as modified in git status - Untrack all pre-existing __pycache__/*.pyc files via git rm --cached
31 lines
275 B
Plaintext
31 lines
275 B
Plaintext
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Virtual environment
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Test/coverage artifacts
|
|
.coverage
|
|
.pytest_cache/
|
|
htmlcov/
|
|
|
|
# OS artifacts
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|