From 8c652ca92664bfcee524feb97fd768e2961ee672 Mon Sep 17 00:00:00 2001 From: "Micah D. Gale" Date: Mon, 15 Jan 2024 15:57:44 -0600 Subject: [PATCH] Made tally appendable. --- montepy/data_inputs/tally.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/montepy/data_inputs/tally.py b/montepy/data_inputs/tally.py index c99ca097..12913c07 100644 --- a/montepy/data_inputs/tally.py +++ b/montepy/data_inputs/tally.py @@ -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)