Skip to content

Commit 04e23bd

Browse files
committed
linting
1 parent b6dc3a8 commit 04e23bd

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

uvdat/core/tasks/fmv.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
from django.contrib.gis.geos import GEOSGeometry
1010
from django.core.files.base import ContentFile
11+
import numpy as np
1112
import pyproj
1213
from shapely.geometry import Point, Polygon, mapping
1314
from shapely.ops import unary_union
14-
import numpy as np
1515

1616
from uvdat.core.models import (
1717
FMVLayer,
@@ -201,8 +201,12 @@ def create_geojson_and_bbox(
201201
half_height = target_height / 2
202202

203203
# Corner offsets (dx, dy) relative to center
204-
corner_offsets = [(-half_width, half_height), (half_width, half_height),
205-
(half_width, -half_height), (-half_width, -half_height)]
204+
corner_offsets = [
205+
(-half_width, half_height),
206+
(half_width, half_height),
207+
(half_width, -half_height),
208+
(-half_width, -half_height),
209+
]
206210

207211
corners = []
208212
for dx, dy in corner_offsets:

0 commit comments

Comments
 (0)