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
If anything precedes with two spaces, e.g. the indentation of a multiline string flake8 detects an E117 for the next correctly indented line (if indentation uses tabs):
TEST_STRING = '''
foo
bar
'''
if __name__ == '__main__':
print(TEST_STRING) # indented with tab!
If anything precedes with two spaces, e.g. the indentation of a multiline string flake8 detects an E117 for the next correctly indented line (if indentation uses tabs):
I can only reproduce this with flake8, not with raw pycodestyle.
Maybe related #885 #836 #705.
The text was updated successfully, but these errors were encountered: