Module ‘XX’ has no ‘XX’ member pylint (no member)

I recently found that vscode is a tool between an IDE and an editor. It can run debugging, supports multiple languages, is relatively busy and lightweight, but I have problems in red when writing Python, PyLint (no-member)

PyLint is the Python syntax checker for VsCode. PyLint is a static checker. When using third-party libraries, some members are created only when the code is running

"python.linting.pylintArgs": ["--generate-members"]

To avoid reporting errors

Read More: