Skip to content

Commit 0ed8ee5

Browse files
committed
fix flake
1 parent 1ec48ed commit 0ed8ee5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_package/xms/interp/interpolate/interp_linear_extrap_idw.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class InterpLinearExtrapIdw(Interpolator):
1818

1919
def __init__(self, points=None, triangles=None, scalars=None, nodal_function=None,
2020
point_search_option="natural_neighbor", number_nearest_points=16, blend_weights=True,
21-
progress=None, quadrant_oct=False, weight_quadrant_oct=False,
21+
progress=None, quadrant_oct=False, weight_quadrant_oct=False,
2222
weight_number_nearest_points=16, **kwargs):
2323
"""Constructor.
2424
@@ -407,7 +407,7 @@ def set_idw_search_options(self, nearest_point, quadrant_oct_search):
407407
quadrant (2d) or octant (3d)
408408
"""
409409
self._instance.SetIdwSearchOpts(nearest_point, quadrant_oct_search)
410-
410+
411411
@property
412412
def truncate_interpolated_values(self):
413413
"""Get the option to truncate interpolated values."""

0 commit comments

Comments
 (0)