We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flake8 complains about:
return [msg for msg in msgs if (msg[0] == 'notification' and msg[1] == b'redraw' and msg[2][0][0].startswith(b'popupmenu_'))]
and likes this better:
(E127 continuation line over-indented for visual indent)
black 18.6b4 turns it into:
black
return [ msg for msg in msgs if ( msg[0] == "notification" and msg[1] == b"redraw" and msg[2][0][0].startswith(b"popupmenu_") ) ]
where this plugin also adds extra indentation, but that is ok with flake8:
3.5.0 (mccabe: 0.6.1, pycodestyle: 2.4.0, pyflakes: 2.0.0) CPython 3.6.6 on Linux
The text was updated successfully, but these errors were encountered:
No branches or pull requests
flake8 complains about:
and likes this better:
(E127 continuation line over-indented for visual indent)
black
18.6b4 turns it into:where this plugin also adds extra indentation, but that is ok with flake8:
3.5.0 (mccabe: 0.6.1, pycodestyle: 2.4.0, pyflakes: 2.0.0) CPython 3.6.6 on Linux
The text was updated successfully, but these errors were encountered: