fixed flake8 hopefully

This commit is contained in:
klein panic
2024-11-01 01:39:09 -04:00
parent 26a431c064
commit 5dfb4c708b

14
.flake8
View File

@@ -1,11 +1,11 @@
[flake8]
max-line-length = 79 # PEP8 recommends 79, but you can adjust this
max-line-length = 79
exclude =
venv, # Ignore your virtual environment
.git, # Ignore Git files
__pycache__, # Ignore Python cache
venv,
.git,
__pycache__,
ignore =
E203, # Ignore specific errors (customize as needed)
W503 # Ignore line break before binary operator
E203,
W503