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
I often use an indentation format like this for long method chains with something like SQLAlchemy, which seems to be acceptable according to my reading of PEP8 and doesn't raise any errors when pycodestyle is run:
It seems to be related to having the = operator aligned with the indented lines? Adding just a single character to the left side of the assignment will remove the E131.
I often use an indentation format like this for long method chains with something like SQLAlchemy, which seems to be acceptable according to my reading of PEP8 and doesn't raise any errors when pycodestyle is run:
However, if the name of the variable being assigned to is a particular length,
E131 - continuation line unaligned for hanging indent
is raised:It seems to be related to having the
=
operator aligned with the indented lines? Adding just a single character to the left side of the assignment will remove the E131.Is this an issue in pycodestyle, or do I just not understand what's going on here?
The text was updated successfully, but these errors were encountered: