In my view I want to store in a variables every object from myModel but I have the Class 'myModel' has no 'objects' memberpylint(no-member) error
I have red that installing pylint-django as suggested by this similar topic : Class has no objects member but it didn't resolved my error then (in the same topic) I red that adding this
"[python]": {
"python.linting.pylintArgs": [
"--load-plugins=pylint_django"
],
},
To my settings.json would do the trick but I have the warning : Unknown Identifier. Use language identifiers and the error on myModel.objects is still here