From 86f9d364f0115fdfbb3504b28d9f169122a81360 Mon Sep 17 00:00:00 2001 From: Romain Hugonnet Date: Thu, 28 Mar 2024 14:14:41 -0800 Subject: [PATCH] Linting --- xdem/coreg/biascorr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]))