[flake8]
ignore =
    E402, # module level import not at top of file
    E501, # line too long (82 > 79 characters)
    E722, # do not use bare except, specify exception instead
    F401, # module imported but unused
    F403, # ‘from module import *’ used; unable to detect undefined names
    F841, # local variable name is assigned to but never used
    W503, # line break before binary operator
    W504, # line break after binary operator
    C901, # main is too complex

max-complexity = 90
max-line-length = 90
