From 992d4c16611044f9554ddcd4ff86ad2a0d1a8a91 Mon Sep 17 00:00:00 2001 From: yardasol Date: Tue, 28 Jun 2022 16:11:43 -0500 Subject: [PATCH] add flux_operator to the __init__ module --- openmc/deplete/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openmc/deplete/__init__.py b/openmc/deplete/__init__.py index 5891555a21..753167741e 100644 --- a/openmc/deplete/__init__.py +++ b/openmc/deplete/__init__.py @@ -8,6 +8,7 @@ A depletion front-end tool. from .nuclide import * from .chain import * from .operator import * +from .flux_operator import * from .reaction_rates import * from .atom_number import * from .stepresult import *