Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 authored Oct 27, 2023
1 parent 6643526 commit 122eb47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansys/mapdl/core/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,6 @@ def select(self, names: Union[str, list[str], tuple[str]], mute=False) -> None:

for i, each_name in enumerate(names):
if i == 0:
self._mapdl.cmsel("S", each_name)
self._mapdl.cmsel("S", each_name, mute=mute)
else:
self._mapdl.cmsel("A", each_name)
self._mapdl.cmsel("A", each_name, mute=mute)

0 comments on commit 122eb47

Please sign in to comment.