Skip to content

Commit

Permalink
Down the rabbit hole
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed Jan 31, 2025
1 parent d37be47 commit 37e2a7c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/gallery-src/framework/run_computeReactionRates.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 37e2a7c

Please sign in to comment.