app-MAIL-temp/.flake8

17 lines
267 B
Plaintext
Raw Normal View History

2020-12-06 11:25:32 +01:00
[flake8]
ignore =
E501,
# W503 is incompatible with PEP 8
W503
exclude =
.git,
__pycache__,
.pytest_cache,
static,
templates,
# migrations are generated by alembic
migrations,
docs
per-file-ignores =
__init__.py:F401