From 5b2e0314759fce09eb734ee84143f584da947534 Mon Sep 17 00:00:00 2001 From: PullRequestOpen <57924615+PullRequestOpen@users.noreply.github.com> Date: Fri, 6 Dec 2019 10:18:10 -0600 Subject: [PATCH] Update openmc/tallies.py ``` # Variables to indicate filter bins, nuclides, and scores that can be merged ``` Co-Authored-By: Paul Romano --- openmc/tallies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/tallies.py b/openmc/tallies.py index e2e633e134..3c3877e610 100644 --- a/openmc/tallies.py +++ b/openmc/tallies.py @@ -674,7 +674,7 @@ class Tally(IDManagerMixin): if equal_filters and equal_nuclides and equal_scores: return True - # Variables to indicate filter bins which can be merged, nuclides and scores + # Variables to indicate filter bins, nuclides, and scores that can be merged merge_filters = self._can_merge_filters(other) merge_nuclides = self._can_merge_nuclides(other) merge_scores = self._can_merge_scores(other)