Answers for "python has no meta member"

7

post has no object memeber in django error

Install Django pylint:

pip install pylint-django
ctrl+shift+p > Preferences: Configure Language Specific Settings > Python

The settings.json available for python language should look like the below:

{
    "python.linting.pylintArgs": [
        "--load-plugins=pylint_django"
    ],

    "[python]": {

    }
}
Posted by: Guest on May-17-2020
0

vscode disable pylint class has no member

// in VsCode --> settings.json
"python.linting.pylintArgs": ["--disable={e1101}"]
Posted by: Guest on December-21-2020

Code answers related to "python has no meta member"

Python Answers by Framework

Browse Popular Code Answers by Language