Avoid Pylint warning E1101: ‘Instance of .. has no .. member’ for class with dynamic attributes

Just to provide the answer that works for me now – as The Compiler suggested you can add a rule for the problematic class in your projects .pylintrc:

[TYPECHECK]
ignored-classes=Fysom,MyClass

Leave a Comment