From 0e5be25d974cca88ae8c1021cabc4893417ec771 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Sun, 16 Jun 2024 18:58:00 +0200 Subject: [PATCH] [core] remove duplicate call to updateOutputAttr The update is done at the same place as the status update. This is a duplicate that is not needed. --- meshroom/core/node.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meshroom/core/node.py b/meshroom/core/node.py index 0a806989..4d0cb069 100644 --- a/meshroom/core/node.py +++ b/meshroom/core/node.py @@ -959,7 +959,6 @@ class BaseNode(BaseObject): } self._computeUids() self._buildCmdVars() - self.updateOutputAttr() if self.nodeDesc: self.nodeDesc.postUpdate(self) # Notify internal folder change if needed