[flake8]
ignore=E501,E402,W501,W503,W504,F841,F811,E741 

# TODO try to reduce the number of ignores
# E501: line too long (82 > 79 characters)
# E402: module level import not at top of file
# W501: line break occurred after a binary operator
# W503: line break before binary operator
# W504: line break after binary operator
# F841: local variable 'x' is assigned to but never used
# F811: redefinition of unused 'x' from line 1
# E741: ambiguous variable name 'l'
