mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 00:38:41 +02:00
[graph] only save input params
This commit is contained in:
parent
4372863a2c
commit
224cd935f9
1 changed files with 1 additions and 1 deletions
|
@ -667,7 +667,7 @@ class Node(BaseObject):
|
|||
return self.graph.getDepth(self)
|
||||
|
||||
def toDict(self):
|
||||
attributes = {k: v.getExportValue() for k, v in self._attributes.objects.items()}
|
||||
attributes = {k: v.getExportValue() for k, v in self._attributes.objects.items() if v.isInput}
|
||||
return {
|
||||
'nodeType': self.nodeType,
|
||||
'packageName': self.packageName,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue