Skip to content

Replace stray usage of _get_array with get_array #1358

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/post.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def element_values(self, item, comp="", option="AVG") -> np.ndarray:
"""
tmp_table = "__ETABLE__"
self._mapdl.etable(tmp_table, item, comp, option, mute=True)
return self._mapdl._get_array("ELEM", 1, "ETAB", tmp_table)[
return self._mapdl.get_array("ELEM", 1, "ETAB", tmp_table)[
self.selected_elements
]

Expand Down