Skip to content

Commit

Permalink
more betterer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulTalbot-INL committed Jun 11, 2024
1 parent 454cc30 commit 7093f70
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions ravenframework/utils/InputData.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,13 @@ def __init__(self):
create new instance.
@ Out, None
"""
self.parameterValues = {}
self.subparts = []
self.value = ""
self.additionalInput = [] # List of raven.utils.TreeStructure.InputNode instances
self.parameterValues = {} # attributes of the hierarchal input, attached to nodes, but not nodes themselves
self.subparts = [] # pre-defined nodes that are children of this node
self.value = "" # non-hierarchal value associated with this node
# addtionalInput is a List of raven.utils.TreeStructure.InputNode instances. Unlike subparts, these do not have
# a predefined structure, and will not directly be parsed as part of the spec. Only used when
# strictMode is set to False for this node.
self.additionalInput = []

@classmethod
def createClass(cls, name, ordered=False, contentType=None, baseNode=None,
Expand Down

0 comments on commit 7093f70

Please sign in to comment.