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
In the code below, the whitespace ahead of a and b contains tabs and spaces:
frompathlibimportPathdefb():
Path("my_data.txt").write_text(""" a b """)
This raises "E101 Indentation contains mixed spaces and tabs", even though this is not indentation but the contents of a multiline string where the leading indentation is user data and not python code. We should ignore multiline strings for E101.
The text was updated successfully, but these errors were encountered:
In the code below, the whitespace ahead of a and b contains tabs and spaces:
This raises "E101 Indentation contains mixed spaces and tabs", even though this is not indentation but the contents of a multiline string where the leading indentation is user data and not python code. We should ignore multiline strings for E101.
The text was updated successfully, but these errors were encountered: