Skip to content

Commit

Permalink
FIX: Call properties of elements3d
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys committed Dec 19, 2024
1 parent 5eb2f57 commit 353c504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/aedt/core/modules/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def properties(self):
"""
if not self._legacy_props:
props = {}
for k, v in self.properties.items():
for k, v in super().properties.items():

Check warning on line 162 in src/ansys/aedt/core/modules/mesh.py

View check run for this annotation

Codecov / codecov/patch

src/ansys/aedt/core/modules/mesh.py#L162

Added line #L162 was not covered by tests
props[k] = v
if "Assignment" in props:
assignment = props["Assignment"]
Expand Down

0 comments on commit 353c504

Please sign in to comment.