Skip to content

Commit

Permalink
fix isort #180
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Verelst committed Nov 26, 2024
1 parent 841d707 commit 634bb8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/openeo_gfmap/utils/catalogue.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pyproj.crs import CRS
from rasterio.warp import transform_bounds
from requests import adapters
from shapely.geometry import box, Point, shape
from shapely.geometry import Point, box, shape
from shapely.ops import unary_union

from openeo_gfmap import (
Expand Down Expand Up @@ -206,7 +206,7 @@ def s1_area_per_orbitstate_vvvh(
]
if len(shapely_geometries) == 1 and isinstance(shapely_geometries[0], Point):
point = shapely_geometries[0]
buffer_size = 0.0001
buffer_size = 0.0001
buffered_geometry = point.buffer(buffer_size)
bounds = buffered_geometry.bounds
else:
Expand Down

0 comments on commit 634bb8f

Please sign in to comment.