VAR = '''
indentation
here
should
be
ignored because it's a string
'''
实际上,PyCharm / PEP8抱怨它。
答案 0 :(得分:4)
所以使用Pycharm 5.0社区版我得到了这个“混合缩进”警告..即使缩进没有混合....不知道那里发生了什么。我不想完全禁用Pep8检查,因为我认为帮助保持代码清洁是有用的。您可以通过转到Settings-> Editor-> Inspection选择“Pep8 Coding Style Violation”来告诉Pycharm忽略此特定错误。在右下角,您应该看到“忽略错误”框,为此错误添加the Pep8 error code(E101),您不应再看到此错误。