Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
gmalinve committed Aug 9, 2024
1 parent 8dd7853 commit 283acae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyaedt/modules/Boundary.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ def delete(self):
self._app.o_maxwell_parameters.DeleteParameters([self.name])
else:
self._app.oboundary.DeleteBoundaries([self.name])
self._app.excitation_objects.pop(self.name)
if self._app.design_type in ["Maxwell 2D", "Maxwell 3D"]:
self._app.excitation_objects.pop(self.name)
self._app.boundaries
return True

Expand Down

0 comments on commit 283acae

Please sign in to comment.