From 353c50417f7726cc5100060a4b835845d1019c24 Mon Sep 17 00:00:00 2001 From: Sebastien Morais Date: Thu, 19 Dec 2024 09:20:49 +0100 Subject: [PATCH] FIX: Call properties of elements3d --- src/ansys/aedt/core/modules/mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/aedt/core/modules/mesh.py b/src/ansys/aedt/core/modules/mesh.py index 7ae4ec4c7f7..6bf52279556 100644 --- a/src/ansys/aedt/core/modules/mesh.py +++ b/src/ansys/aedt/core/modules/mesh.py @@ -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(): props[k] = v if "Assignment" in props: assignment = props["Assignment"]