Skip to content

Commit cd73ab3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 8eea8eb commit cd73ab3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/dolphin/stitching.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def merge_images(
270270
out_bounds=out_bounds,
271271
out_bounds_epsg=out_bounds_epsg,
272272
)
273-
(xmin, ymin, xmax, ymax) = bounds
273+
xmin, ymin, xmax, ymax = bounds
274274
proj_win = (xmin, ymax, xmax, ymin) # ul_lr = ulx, uly, lrx, lry
275275

276276
# Write out the files for gdal_merge using the --optfile flag

src/dolphin/unwrap/_tophu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def _get_cb_and_nodata(unwrap_method, unwrap_callback, nodata):
126126
)
127127
# Used to track if we can redirect logs or not
128128

129-
(width, height) = io.get_raster_xysize(ifg_filename)
129+
width, height = io.get_raster_xysize(ifg_filename)
130130
crs, transform = _get_rasterio_crs_transform(ifg_filename)
131131

132132
unw_suffix = full_suffix(unw_filename)

0 commit comments

Comments
 (0)