[pycodestyle]
# W504 line break after binary operator
# E722 do not use bare 'except' (pylint will tell us about that)
ignore = E501, W504, E722
max_line_length = 120
exclude = settings