Skip to content

Commit 6b27ff1

Browse files
committed
[WIP/ENH/CLN] Improved the pattern to deserialize properties
1 parent c2b70e0 commit 6b27ff1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gempy_engine/core/data/options/interpolation_options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def from_args(
106106
# @on
107107

108108
@classmethod
109-
def init_octree_options(cls, range=1.7, c_o=10, refinement: int = 1):
109+
def init_octree_options(cls, range=1.7, c_o=10., refinement: int = 1):
110110
return InterpolationOptions.from_args(
111111
range=range,
112112
c_o=c_o,
@@ -118,7 +118,7 @@ def init_octree_options(cls, range=1.7, c_o=10, refinement: int = 1):
118118
def init_dense_grid_options(cls):
119119
options = InterpolationOptions.from_args(
120120
range=1.7,
121-
c_o=10,
121+
c_o=10.,
122122
mesh_extraction=False,
123123
number_octree_levels=1
124124
)

0 commit comments

Comments
 (0)