Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
命令版本 1.4.x 默认忽略 E226(算术运算符周围的pep8空格),因为 PEP 8 不强制执行它们。
pep8
有没有办法为较新版本的命令打开 E226 pep8?即使它需要算术运算符周围的空格。
这是来自 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