Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Mar 9, 2024
1 parent 3efbd58 commit b420105
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions xdem/dem.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import warnings
from typing import Any, Literal

import geopandas as gpd
import numpy as np
import rasterio as rio
import geopandas as gpd
from affine import Affine
from geoutils import SatelliteImage
from geoutils.raster import Mask, RasterType
Expand Down Expand Up @@ -421,7 +421,11 @@ def coregister_3d(
coreg_method = coreg.NuthKaab()

coreg_method.fit(
reference_elev=reference_elev, to_be_aligned_elev=self, inlier_mask=inlier_mask, bias_vars=bias_vars, **kwargs
reference_elev=reference_elev,
to_be_aligned_elev=self,
inlier_mask=inlier_mask,
bias_vars=bias_vars,
**kwargs,
)
return coreg_method.apply(self)

Expand Down

0 comments on commit b420105

Please sign in to comment.