Hi,
PnP does not run plugins that inherit a plugin without set 'implements' again
ie:
class Parent(Plugin)
implement=[SomeInterface]
def helloIm(self):
print(self)
class Child(Parent)
pass
The Child will be called only if I set implement
ie:
class Parent(Plugin)
implement=[SomeInterface]
def helloIm(self):
print(self)
class Child(Parent)
implement=[SomeInterface]