From 7bc07bdaad123d85d75c66c53bd692b3d0d16463 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Fri, 7 Jun 2024 17:49:08 +0200 Subject: [PATCH] Minor comment update --- meshroom/core/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/core/node.py b/meshroom/core/node.py index f09d8a48..b565cacb 100644 --- a/meshroom/core/node.py +++ b/meshroom/core/node.py @@ -750,7 +750,7 @@ class BaseNode(BaseObject): # Apply expressions for File attributes if attr.attributeDesc.isExpression: defaultValue = "" - # Do not evaluate expression for disabled attributes (the expression may refer to other attributes that are not yet defined) + # Do not evaluate expression for disabled attributes (the expression may refer to other attributes that are not defined) if attr.enabled: try: defaultValue = attr.defaultValue()