[core] desc.node: Add reference to containing plugin in desc.BaseNode

This commit is contained in:
Candice Bentéjac 2025-06-10 14:42:44 +02:00
parent c8671ded0e
commit 3857daa4e4
2 changed files with 4 additions and 2 deletions

View file

@ -78,8 +78,9 @@ class BaseNode(object):
outputs = []
size = StaticNodeSize(1)
parallelization = None
documentation = ''
category = 'Other'
documentation = ""
category = "Other"
plugin = None
def __init__(self):
super(BaseNode, self).__init__()