PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pylint_django
/
tests
/
input
/
Editing: func_noerror_formview_ancestors.py
""" Checks that Pylint does not complain about django FormViews having too many ancestors """ # pylint: disable=missing-docstring from django.views.generic import FormView class SomeView(FormView): pass
SAVE
CANCEL