Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 4, 2025
1 parent d82ac8a commit b58220a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion geemap/coreutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,9 @@ def geojson_to_ee(
longitude = coordinates[0]
latitude = coordinates[1]
geom = ee.Geometry.Point(longitude, latitude)
elif geo_json["geometry"]["type"] == "MultiPoint": # Checks whether it is a multipoint
elif (
geo_json["geometry"]["type"] == "MultiPoint"
): # Checks whether it is a multipoint
coordinates = geo_json["geometry"]["coordinates"]
longitude = coordinates[0]
latitude = coordinates[1]
Expand Down

0 comments on commit b58220a

Please # to comment.