Black compatibility with flake8


Python tip:

When using black and flake8 together set the max line length for flake8 to 88 to match black's default value.

Minimal flake8 black compatible config:

[flake8]
max-line-length = 88
extend-ignore = E203