From f0cda31e73311a2673bc7fb0dac698f396cf2933 Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Fri, 22 Jul 2022 10:45:15 +0100 Subject: [PATCH] corrected arg name --- openmc/universe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/universe.py b/openmc/universe.py index fe41674d54..78f75bbfc1 100644 --- a/openmc/universe.py +++ b/openmc/universe.py @@ -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