You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
According to setup.cfg, E203 is partly ignored because it's 'contrary to PEP8'. After a bit of research i found out that it is due to colons in slice indexes, which is covered under PEP8.
Going down the rabbithole a bit further, I found PyCQA/pycodestyle#373 and PyCQA/pycodestyle#914, so I suggest tracking those issues and removing E203 once these are resolved, merged, and shipped.
The text was updated successfully, but these errors were encountered:
ShadowJonathan
changed the title
Unignore and enforce check E203 (after colon-in-index edge-case has been solved)
Unignore and enforce check E203 (
Feb 10, 2021
ShadowJonathan
changed the title
Unignore and enforce check E203 (
Unignore and enforce check E203 ("Whitespace before colon")
Feb 10, 2021
Yup, it feels like black is covering this case and so we can safely turn off the flake8 checking of it. I don't think its worth digging into if that's the case
(
E203
checks "Whitespace before ':' ")According to
setup.cfg
,E203
is partly ignored because it's 'contrary to PEP8'. After a bit of research i found out that it is due to colons in slice indexes, which is covered under PEP8.Going down the rabbithole a bit further, I found PyCQA/pycodestyle#373 and PyCQA/pycodestyle#914, so I suggest tracking those issues and removing
E203
once these are resolved, merged, and shipped.The text was updated successfully, but these errors were encountered: