diff --git a/xdem/coreg/biascorr.py b/xdem/coreg/biascorr.py index b9e87674..416dc8f4 100644 --- a/xdem/coreg/biascorr.py +++ b/xdem/coreg/biascorr.py @@ -1074,7 +1074,7 @@ def _fit_rst_rst( # type: ignore ) -> None: # The number of parameters in the first guess defines the polynomial order when calling np.polyval2d - p0 = np.ones(shape=((self._meta["poly_order"] + 1) **2)) + p0 = np.ones(shape=((self._meta["poly_order"] + 1) ** 2)) # Coordinates (we don't need the actual ones, just array coordinates) xx, yy = np.meshgrid(np.arange(0, ref_elev.shape[1]), np.arange(0, ref_elev.shape[0]))