修复了若干Bug

This commit is contained in:
Falck
2026-04-26 09:25:06 +08:00
parent 902d2782cf
commit 881aac2161
12 changed files with 665 additions and 23 deletions

40
.gitignore vendored
View File

@@ -4,42 +4,36 @@ __pycache__/
*.pyc
*.pyo
*.pyd
# Logs and temp files
*.log
*.tmp
# Environment
.Python
*.so
.coverage
htmlcov/
.coverage.*
.pytest_cache/
.mypy_cache/
.tox/
.venv/
venv/
.env
.env.local
*.env.*
# Dependencies
.venv/
venv/
node_modules/
# Build artifacts
dist/
build/
target/
*.egg-info/
# Coverage
.coverage
coverage/
htmlcov/
# Logs
*.log
# Editors
.vscode/
.idea/
*.swp
*.swo
*.tmp
# System
# OS
.DS_Store
Thumbs.db
# MyPy
.mypy_cache/
# Pytest
.pytest_cache/
```