[core] Internal attributes: move "invalidation" before "comment"

This commit is contained in:
Candice Bentéjac 2022-12-15 19:00:15 +01:00
parent 835e396d8d
commit 3bc9445615

View file

@ -499,25 +499,24 @@ class Node(object):
packageName = '' packageName = ''
packageVersion = '' packageVersion = ''
internalInputs = [ internalInputs = [
StringParam(
name="comment",
label="Comments",
description="User comments describing this specific node instance.",
value="",
semantic="multiline",
uid=[],
),
StringParam( StringParam(
name="invalidation", name="invalidation",
label="Invalidation Message", label="Invalidation Message",
description="A message that will invalidate the node's output folder.\n" description="A message that will invalidate the node's output folder.\n"
"This is useful for development, we can invalidate\n" "This is useful for development, we can invalidate the output of the node when we modify the code.\n"
"the output of the node when we modify the code.",
value="", value="",
semantic="multiline", semantic="multiline",
uid=[0], uid=[0],
advanced=True, advanced=True,
), ),
StringParam(
name="comment",
label="Comments",
description="User comments describing this specific node instance.\n"
value="",
semantic="multiline",
uid=[],
),
StringParam( StringParam(
name="label", name="label",
label="Node's Label", label="Node's Label",