Skip to content

Commit 2f6f35c

Browse files
authored
Replace stray usage of _get_array with get_array (#1358)
1 parent de923e6 commit 2f6f35c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansys/mapdl/core/post.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ def element_values(self, item, comp="", option="AVG") -> np.ndarray:
418418
"""
419419
tmp_table = "__ETABLE__"
420420
self._mapdl.etable(tmp_table, item, comp, option, mute=True)
421-
return self._mapdl._get_array("ELEM", 1, "ETAB", tmp_table)[
421+
return self._mapdl.get_array("ELEM", 1, "ETAB", tmp_table)[
422422
self.selected_elements
423423
]
424424

0 commit comments

Comments
 (0)