Merge remote-tracking branch 'origin/develop' into dev_memoryManagement

This commit is contained in:
Yann Lanthony 2017-11-10 11:43:20 +01:00
commit bf747f69d6
8 changed files with 92 additions and 64 deletions

View file

@ -692,7 +692,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,