我正在使用 pycodestyle 和 pycodestyle_magic,但不能忽略错误。
我的代码如下:
%pip install flake8 pycodestyle_magic
%load_ext pycodestyle_magic
%pycodestyle_on --ignore E225
a=1
我期待没有警告,没有错误。
但结果如下:
1:2: E225 missing whitespace around operator
这不是我所期待的。
技术细节:
- pycodestyle==2.8.0
- pycodestyle-magic==0.5
- Python 版本 = 3.8.8