pep8
命令版本1.4.x默认忽略E226(算术运算符周围的空格),因为PEP 8不强制执行它们。
有没有办法在新版本的pep8
命令中打开E226?即使它需要算术运算符周围的空格。
答案 0 :(得分: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