🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 01:30:23 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pylint_django
/
tests
/
input
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/pylint_django/tests/input
🔄 Refresh
✏️
Editing: func_noerror_factory_post_generation.py
Read Only
""" Checks that Pylint does not complain about no self argument in factory.post_generation method. """ # pylint: disable=missing-docstring,too-few-public-methods,unused-argument,no-member import factory class SomeModelFactory(factory.Factory): class Meta: pass @factory.post_generation def action(obj, create, extracted, **kwargs): if extracted: obj.do_action() obj.save()
💾 Save Changes
❌ Cancel