Skip to content

Commit

Permalink
fix: removing dof and name from interpolator json
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose committed Jan 15, 2024
1 parent 1658714 commit f305211
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LoopStructural/interpolators/_geological_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ def to_json(self):
"""
json = {}
json["type"] = self.type
json["name"] = self.propertyname
# json["name"] = self.propertyname
json["constraints"] = self.constraints
json["data"] = self.data
json["type"] = self.type
json["dof"] = self.nx
# json["dof"] = self.nx
json["up_to_date"] = self.up_to_date
return json

Expand Down

0 comments on commit f305211

Please sign in to comment.