Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jgsdavies committed Nov 1, 2024
1 parent 59e1082 commit c342a2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansys/motorcad/core/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ def _from_json(cls, json, motorcad_instance=None):
if "mesh_length" in json:
new_region.mesh_length = json["mesh_length"]

if "_lamination_type" in json:
new_region._lamination_type = json["_lamination_type"]
if "lamination_type" in json:
new_region._lamination_type = json["lamination_type"]

return new_region

Expand Down

0 comments on commit c342a2c

Please sign in to comment.