Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
guss84 committed Aug 19, 2024
1 parent 12476c9 commit 1a8c620
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions rest/openeo_collections/collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,19 @@
"SENTINEL2_L1C_SENTINELHUB": "SENTINEL2_L1C",
}


def build_basic_collection(collection_info):
basic_collection = {
"stac_version": collection_info["stac_version"],
"id": collection_info["id"],
"description": collection_info["description"],
"license": collection_info["license"],
"extent": collection_info["extent"],
"links": collection_info["links"],
}
"stac_version": collection_info["stac_version"],
"id": collection_info["id"],
"description": collection_info["description"],
"license": collection_info["license"],
"extent": collection_info["extent"],
"links": collection_info["links"],
}
if collection_info.get("experimental") is not None:
basic_collection["experimental"] = collection_info.get("experimental")

return basic_collection


Expand Down

0 comments on commit 1a8c620

Please sign in to comment.