[flake8]
extend-ignore = 
    # E501, line too long
    E501,
    # E122, continuation line missing indentation or outdented
    E122
exclude =
    .git,
    venv,
    .mypy_cache,
    .pytest_cache,
    __pycache__,
    dist,
    htmlcov
max-complexity = 10
