- Corrected undefined variable 'x' in funcs.py. - Refactored configuration loading in funcs.py for clarity and to resolve Pylint errors. - Changed logging f-strings to %-style formatting across multiple files. - Added encoding='utf-8' to open() calls. - Replaced list comprehensions used for side-effects with for-loops. - Made some broad exception catches more specific. - Added check=True to subprocess.run() calls in loader.py. - Corrected function signature parameter orders (e.g., *args placement). - Removed some unused variables and imports. - Added Pylint disable comments for known false positives (e.g., no-member for psycopg2.errors and base class methods). - Improved error handling and logging in funcs.py for startup sequences. - Addressed dependency installation issues by commenting out 'pokedex' (unavailable on PyPI) and correcting case for 'SpeechRecognition' in requirements.txt.
65 lines
687 B
Plaintext
65 lines
687 B
Plaintext
.env
|
|
*.session-journal
|
|
*.session
|
|
build
|
|
test*
|
|
*.mp3
|
|
*.webm
|
|
*.webp
|
|
*.mp4
|
|
*.tgs
|
|
*.txt
|
|
/*.jpg
|
|
/*.png
|
|
/*.mp4
|
|
*.log
|
|
target/npmlist.json
|
|
package-lock.json
|
|
ultroid.json
|
|
resources/extras/thumbnail.jpg
|
|
resources/auth/
|
|
|
|
# Directories
|
|
addons/
|
|
vcbot/
|
|
__pycache__/
|
|
venv/
|
|
node_modules/
|
|
glitch_me/
|
|
src/glitch-me
|
|
.idea/
|
|
.vscode/
|
|
temp/
|
|
bin-debug/
|
|
bin-release/
|
|
[Oo]bj/
|
|
[Bb]in/
|
|
.settings/
|
|
*.swf
|
|
*.air
|
|
*.ipa
|
|
*.apk
|
|
|
|
# temporary files
|
|
*.raw
|
|
|
|
# fly.io configs
|
|
fly.toml
|
|
|
|
# User-specific data and logs
|
|
downloads/
|
|
uploads/
|
|
logs/
|
|
|
|
# Docker-specific generated directory for safe setup
|
|
docker-ultroid/
|
|
|
|
# Session generator output
|
|
session_output/
|
|
|
|
# Python cache files
|
|
*.py[co]
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db |