Skip to content

Commit

Permalink
Pass in the correct recursive args)
Browse files Browse the repository at this point in the history
  • Loading branch information
keckler committed Nov 30, 2024
1 parent db06fd4 commit 55d8c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion armi/reactor/blueprints/componentBlueprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class can then use to modify the isotopics as necessary.
constructedObject = composites.Composite(self.name)
for groupedComponent in group:
componentDesign = blueprint.componentDesigns[groupedComponent.name]
component = componentDesign.construct(blueprint, matMods=dict())
component = componentDesign.construct(cs, blueprint, matMods=dict())
# override free component multiplicity if it's set based on the group definition
component.setDimension("mult", groupedComponent.mult)
_setComponentFlags(component, self.flags, blueprint)
Expand Down

0 comments on commit 55d8c13

Please sign in to comment.