New pylint does not like cases where a method in a base class is defined as a static method (does not have self as a first argument) and the same method in child class is not static (has self as a first argument)
I added self to base classes' methods signature in metrics and feature processor. This triggers pylint no-selt-use, so I disabled it.
New pylint does not like cases where a method in a base class is defined as a static method (does not have
self
as a first argument) and the same method in child class is not static (hasself
as a first argument)I added
self
to base classes' methods signature in metrics and feature processor. This triggers pylint no-selt-use, so I disabled it.