Skip to content

Commit

Permalink
FIX: flatten_3d_components variable handling (#4932)
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzovecchietti authored Jul 18, 2024
1 parent e7effd5 commit c053e38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaedt/application/Analysis3D.py
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ def flatten_3d_components(self, components=None, purge_history=True, password=No
target_cs = self.modeler._create_reference_cs_from_3dcomp(comp, password=password)
app = comp.edit_definition(password=password)
for var, val in comp.parameters.items():
app[var] = val
self[var] = val
if purge_history:
app.modeler.purge_history(app.modeler._all_object_names)
monitor_cache = {}
Expand Down

0 comments on commit c053e38

Please sign in to comment.