corrected arg name

This commit is contained in:
Jonathan Shimwell 2022-07-22 10:45:15 +01:00 committed by GitHub
parent ff5490e3ba
commit f0cda31e73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -785,7 +785,7 @@ class DAGMCUniverse(UniverseBase):
Universe instance
"""
bounding_cell = openmc.Cell(fill=self, id=bounding_cell_id, region=self.bounding_region(**kwargs))
bounding_cell = openmc.Cell(fill=self, cell_id =bounding_cell_id, region=self.bounding_region(**kwargs))
return openmc.Universe(cells=[bounding_cell])
@classmethod