Change copy to match convention

Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
Josh May 2022-09-08 14:42:28 -07:00 committed by GitHub
parent 3c7483becb
commit 09de637b3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -682,7 +682,7 @@ class FissionYield(Mapping):
self.__class__.__name__, len(self))
def __deepcopy__(self, memo):
result = FissionYield(self.products, np.copy(self.yields))
result = FissionYield(self.products, self.yields.copy())
memo[id(self)] = result
return result