1

命令版本 1.4.x 默认忽略 E226(算术运算符周围的pep8空格),因为 PEP 8 不强制执行它们。

有没有办法为较新版本的命令打开 E226 pep8?即使它需要算术运算符周围的空格。

4

1 回答 1

0

这是来自 pep 源代码

if len(code) < 4 and any(s.startswith(code)
                         for s in self.options.select):
    return False
return (code.startswith(self.options.ignore) and
        not code.startswith(self.options.select))

所以我会尝试

选择=Exxx

于 2014-03-14T10:16:02.317 回答