1"""If you are using pylint on Visual Studio Code write
2this line at the beginning of the program :"""
3
4# pylint: disable=no-member
5
6"""the rest of the program :"""
7
8x = bla bla
9....
1"python.linting.pylintArgs": [
2 "--extension-pkg-whitelist=lxml" // The extension is "lxml" not "1xml"
3]