Skip to content

Commit

Permalink
Made tally appendable.
Browse files Browse the repository at this point in the history
  • Loading branch information
MicahGale committed Jan 15, 2024
1 parent d98e63e commit 8c652ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions montepy/data_inputs/tally.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,6 @@ def _append_node(self, node):
if not isinstance(node, syntax_node.ValueNode):
raise ValueError(f"Can only append ValueNode. {node} given")
self._old_numbers.append(node)

def append(self, cell):
self._cells.append(cell)

0 comments on commit 8c652ca

Please sign in to comment.