Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Mar 28, 2024
1 parent 609855a commit 86f9d36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xdem/coreg/biascorr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]))
Expand Down

0 comments on commit 86f9d36

Please sign in to comment.