Skip to content

Commit

Permalink
removing unnecessary assignments
Browse files Browse the repository at this point in the history
Co-authored-by: Chuck Daniels <[email protected]>
  • Loading branch information
SwordSaintLancelot and chuckwondo authored Jul 19, 2024
1 parent 06cca63 commit 7d256af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hls_vi/generate_stac_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,7 @@ def get_geometry(granule):
ring.append(closing_point)
ringtuple = (ring,)
multipolygon.append(ringtuple)
geometry = MultiPolygon(multipolygon)
return geometry
return MultiPolygon(multipolygon)


def process_common_metadata(item, granule):
Expand Down

0 comments on commit 7d256af

Please sign in to comment.