From faece7efca73036ba5d0475d92553780342b5b1a Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Mon, 24 Mar 2025 00:00:56 +0100 Subject: [PATCH] minor wording --- meshroom/core/desc/attribute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/core/desc/attribute.py b/meshroom/core/desc/attribute.py index 4970ff87..434d39e7 100644 --- a/meshroom/core/desc/attribute.py +++ b/meshroom/core/desc/attribute.py @@ -80,7 +80,7 @@ class Attribute(BaseObject): # This property only makes sense for output attributes. isExpression = Property(bool, lambda self: self._isExpression, constant=True) # isDynamicValue - # The default value of the attribute's descriptor is None, so it's not an input value, + # The default value of the attribute's descriptor is None, so it is not an input value, # but an output value that is computed during the Node's process execution. isDynamicValue = Property(bool, lambda self: self._isDynamicValue, constant=True) group = Property(str, lambda self: self._group, constant=True)