mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 21:25:36 -04:00
Fix Python 3.5-related issue in mgxs module
This commit is contained in:
parent
3da96a89be
commit
34bd405245
1 changed files with 1 additions and 1 deletions
|
|
@ -412,7 +412,7 @@ class MGXS(object):
|
|||
# Otherwise, return all nuclides in the spatial domain
|
||||
else:
|
||||
nuclides = self.domain.get_all_nuclides()
|
||||
return nuclides.keys()
|
||||
return list(nuclides.keys())
|
||||
|
||||
def get_nuclide_density(self, nuclide):
|
||||
"""Get the atomic number density in units of atoms/b-cm for a nuclide
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue