From b1c7a77f37d7a8a4f72a63b50da63fd518a5f915 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby Date: Fri, 14 Nov 2025 15:18:39 +0100 Subject: [PATCH] GeoTIFF: Fix pep8. --- src/View/GeoTIFF/Edit/Window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/View/GeoTIFF/Edit/Window.py b/src/View/GeoTIFF/Edit/Window.py index 5cbba817..4e32cb27 100644 --- a/src/View/GeoTIFF/Edit/Window.py +++ b/src/View/GeoTIFF/Edit/Window.py @@ -186,7 +186,7 @@ class EditGeoTIFFWindow(PamhyrWindow): with rasterio.open(self._file_name) as data: img = data.read() - b = data.bounds[:] # left, bottom, right, top + b = data.bounds[:] # left, bottom, right, top if b[2] > b[0] and b[1] < b[3]: coord = [b[0], b[2], b[1], b[3]]