Skip to content

Commit

Permalink
fix for ironpython support
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzovecchietti committed Apr 30, 2024
1 parent cabc78f commit 892fc45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyaedt/modules/MeshIcepak.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,9 +509,9 @@ def keys(self):
Available settings keys.
"""
if self._mesh_class.manual_settings:
return {**self._manual_mesh_settings, **self._common_mesh_settings}.keys()
return set(self._manual_mesh_settings.keys()) | set(self._common_mesh_settings.keys())
else:
return {**self._automatic_mesh_settings, **self._common_mesh_settings}.keys()
return set(self._automatic_mesh_settings.keys()) | set(self._common_mesh_settings.keys())

def values(self):
"""
Expand Down

0 comments on commit 892fc45

Please sign in to comment.