I'm building my own all-in-one component for a dash app based on the example in the dash documentation.
My implementation works fine, but pylint throws as excepted the E0213:no-self-argument error for all callbacks, as the callbacks are defined as class methods but do not have or use the "self" argument.
What would be the best or pythonic solution to counteract those errors? My ideas are:
- manually disable the pylint error for all callback methods
- decorate the callback with
@staticmethod
. This requires further changes necessary as theids
class is no longer acessible, so all those calls must be changed toMyOnAIO.ids.id_name(...)
.