pylint E1101:Module 'matplotlib.cm' has no 'hot' member @vscodepython
https://github.com/pytorch/pytorch/issues/701git
Instead of ignoring, you can now do: [TYPECHECK] # List of members which are set dynamically and missed by pylint inference # system, and so shouldn't trigger E1101 when accessed. Python regular # expressions are accepted. generated-members=numpy.*,torch.*
Follow the above cue, vscode setting should begithub
"python.linting.pylintArgs": [ "--generated-members=matplotlib.*, pygame.*", ],
1 pylint --generate-rcfile > .pylintrc
打開生成的文件.pylintrc,將模塊名添加至白名單:extension-pkg-whitelist=xxx。以 lxml爲例,結果爲:shell