From 37e2a7c40d0a9cae2207276ddf88c07d546795b1 Mon Sep 17 00:00:00 2001 From: jstilley Date: Fri, 31 Jan 2025 15:13:02 -0800 Subject: [PATCH] Down the rabbit hole --- doc/gallery-src/framework/run_computeReactionRates.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/gallery-src/framework/run_computeReactionRates.py b/doc/gallery-src/framework/run_computeReactionRates.py index 1a7c2d52b..2c2578e2e 100644 --- a/doc/gallery-src/framework/run_computeReactionRates.py +++ b/doc/gallery-src/framework/run_computeReactionRates.py @@ -28,7 +28,7 @@ from armi import configure, nuclideBases, settings from armi.materials import ht9, sodium, uZr from armi.nuclearDataIO.cccc import isotxs -from armi.reactor import assemblies, blocks, blueprints, geometry, grids, reactors +from armi.reactor import assemblies, blocks, geometry, grids, reactors from armi.reactor.components import Circle, DerivedShape, Hexagon from armi.reactor.flags import Flags from armi.tests import ISOAA_PATH @@ -56,7 +56,9 @@ def createDummyReactor(): Often, a reactor model like this is built directly from input files rather than from code as done here. """ - bp = blueprints.Blueprints() + from armi.reactor.blueprints import Blueprints + + bp = Blueprints() cs = settings.Settings() r = reactors.Reactor("Reactor", bp)