fix: resolve CI linting errors (C901, E501, E741, F841)
This commit is contained in:
44
.gitignore
vendored
44
.gitignore
vendored
@@ -1,7 +1,43 @@
|
|||||||
*.pyc
|
# Python
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.egg-info/
|
*.py[cod]
|
||||||
dist/
|
*$py.class
|
||||||
|
*.so
|
||||||
|
.Python
|
||||||
build/
|
build/
|
||||||
.env
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
|
||||||
|
# Virtual Environment
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
.venv/
|
.venv/
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
|
# OS
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Testing
|
||||||
|
.coverage
|
||||||
|
.pytest_cache/
|
||||||
|
htmlcov/
|
||||||
|
*.cover
|
||||||
|
|||||||
Reference in New Issue
Block a user