Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 0a3dbea

Browse files
jkeiferc-wygoda
authored andcommitted
fix: missing commas in landsat products conformsTo
1 parent 51a1a3b commit 0a3dbea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stapi_fastapi_landsat/backend.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
Product(
2121
id="landsat:8",
2222
conformsTo=[
23-
"https://geojson.org/schema/Point.json"
24-
"https://geojson.org/schema/Polygon.json"
23+
"https://geojson.org/schema/Point.json",
24+
"https://geojson.org/schema/Polygon.json",
2525
],
2626
description="Landsat 8",
2727
license="CC0-1.0",
@@ -43,8 +43,8 @@
4343
Product(
4444
id="landsat:9",
4545
conformsTo=[
46-
"https://geojson.org/schema/Point.json"
47-
"https://geojson.org/schema/Polygon.json"
46+
"https://geojson.org/schema/Point.json",
47+
"https://geojson.org/schema/Polygon.json",
4848
],
4949
description="Landsat 9",
5050
license="CC0-1.0",

0 commit comments

Comments
 (0)