You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# models.py
class Foo(models.Model):
...
# forms.py
class FooForm(forms.ModelForm):
class Meta:
...
On running pylint with pylint_django, messages are shown for FooForm.Meta (C1001, W0232, R0903). It would be nice if these messages were suppressed as they are for Meta classes in Model subclasses.
The text was updated successfully, but these errors were encountered:
Define a
ModelForm
:On running
pylint
withpylint_django
, messages are shown forFooForm.Meta
(C1001
,W0232
,R0903
). It would be nice if these messages were suppressed as they are forMeta
classes inModel
subclasses.The text was updated successfully, but these errors were encountered: