// SYSTEM PANEL //
[ROOT]
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pylint_django
/
tests
/
input
[ PARENT ]
EDIT :: func_noerror_issue_46.py
""" Checks that Pylint does not complain about raising DoesNotExist """ # pylint: disable=missing-docstring from django.db import models class SomeModel(models.Model): pass raise SomeModel.DoesNotExist
SAVE
CANCEL