mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 13:15:39 -04:00
Fixed small issue with new _aggregate_filter property in AggregateFilter created with last commit
This commit is contained in:
parent
95e6d27bd9
commit
d6b30e9b37
2 changed files with 2 additions and 1 deletions
|
|
@ -256,7 +256,7 @@ class AggregateFilter(object):
|
|||
if existing is None:
|
||||
clone = type(self).__new__(type(self))
|
||||
clone._type = self.type
|
||||
clone._filter = self.aggregate_filter
|
||||
clone._aggregate_filter = self.aggregate_filter
|
||||
clone._aggregate_op = self.aggregate_op
|
||||
clone._bins = self._bins
|
||||
clone._stride = self.stride
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ import re
|
|||
import numpy as np
|
||||
|
||||
import openmc
|
||||
import openmc.checkvalue as cv
|
||||
|
||||
if sys.version > '3':
|
||||
long = int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue