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
Manually removing the spaces does not work in our case, as code formatting is done by black, which will automatically add whitepspaces around : when used in a slice.
The text was updated successfully, but these errors were encountered:
When definining a string slice like this:
flake8
will raise violationE203
.However, this should not apply to slices, as mentioned in https://www.python.org/dev/peps/pep-0008/#pet-peeves.
Manually removing the spaces does not work in our case, as code formatting is done by
black
, which will automatically add whitepspaces around:
when used in a slice.The text was updated successfully, but these errors were encountered: