[flake8]
max-line-length = 88
ignore = E501, W503, E266, E203, C901
#E501 line too long
#W503 line break before binary operator
#C901 __call__ to complex
; exclude = .git,__pycache__,docs
max-complexity = 15
