We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4500205 commit 9ffc051Copy full SHA for 9ffc051
1 file changed
bin/meshroom_batch
@@ -180,7 +180,8 @@ with meshroom.core.graph.GraphModification(graph):
180
if invalidationString:=args.setInvalidationString:
181
nodes, _ = graph.dfsOnFinish()
182
for node in nodes:
183
- node.internalAttribute("invalidation").value = invalidationString
+ if node.isComputableType:
184
+ node.setInternalAttributeValues({"invalidation": invalidationString})
185
186
if args.input:
187
# get init nodes
0 commit comments