Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
jtherrmann committed Jan 18, 2025
1 parent 275fc12 commit 1ecff5b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/asf_tools/vector.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from collections.abc import Iterator
from pathlib import Path

from osgeo import ogr
Expand All @@ -20,7 +19,9 @@ def get_property_values_for_intersecting_features(geometry: ogr.Geometry, featur
return False


def intersecting_feature_properties(geometry: ogr.Geometry, features: list[ogr.Feature], feature_property: str) -> list[str]:
def intersecting_feature_properties(
geometry: ogr.Geometry, features: list[ogr.Feature], feature_property: str
) -> list[str]:
property_values = []
for feature in features:
if feature.GetGeometryRef().Intersects(geometry):
Expand Down

0 comments on commit 1ecff5b

Please sign in to comment.