mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Return defaultdict(dict) from Chain.get_default_fission_yields
This commit is contained in:
parent
1a4bbb9068
commit
99dfa1f053
1 changed files with 1 additions and 1 deletions
|
|
@ -412,7 +412,7 @@ class Chain(object):
|
|||
names of nuclides with yield data and ``f_yield``
|
||||
is a float for the fission yield.
|
||||
"""
|
||||
out = {}
|
||||
out = defaultdict(dict)
|
||||
for nuc in self.nuclides:
|
||||
if nuc.yield_data is None:
|
||||
continue
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue