For some reason, pylint thinks the class is not abstract (detection in the current situation is done by checking a method that raises NotImplementedError). Adding a comment such as #pylint: disable=W0223 at the top of the module (to disable only in this module) or class (only in this class) should do the trick.
sthenault
source share