下記エラーのためmodelsクラス(hogehoge)のobjectsを参照できません。
Class 'hogehoge' has no 'objects' member
調べてみましたが下記の解決法ではエラーが増えてしまいました。
1.pylintの追加モジュールをインストール。
pip install pylint-django
2.Visual Studio Codeの基本設定 > 設定 > ユーザ設定に下記を追加。
"python.linting.pylintArgs": [
"--load-plugins=pylint_django"
],
上記の解決方法では私の開発環境では以下のようにエラーが増えてしまいました。
error
1Unused render imported from django.shortcuts 2Unused CommentForm imported from forms 3Missing module docstring 4Missing function or method docstring
すべてVScode上でエラーになっております。
どなたか原因をお教えいただけないでしょうか。どうぞよろしくお願い致します。
バージョン
Vscode: 1.49.0
Django: 3.0.5
あなたの回答
tips
プレビュー