I'm slightly unsure of how the generated-members
of pylint works.
Lets say I add the following to .pylintrc
:
[TYPECHECK]
generated-members=commit
It hides the following commit
error:
E1101:Instance of 'scoped_session' has no 'commit' member
However, this hides commit
errors in general, from what I understand. Can I somehow specify the exact class member with generated-members
? For example (pseudo):
[TYPECHECK]
generated-members=sqlalchemy.orm.scoped_session.commit