GeoTIFF: Fix pep8.

scenario-dev-pa
Pierre-Antoine 2025-11-14 15:18:39 +01:00
parent 7b833390f1
commit b1c7a77f37
1 changed files with 1 additions and 1 deletions

View File

@ -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]]