Skip to content

Commit a6ac489

Browse files
authored
Merge pull request #377 from schwehr/eo-typing
eo.py: Add more typing info for module level strings
2 parents af71e74 + ec5d222 commit a6ac489

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pystac/extensions/eo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131

3232
T = TypeVar("T", pystac.Item, pystac.Asset)
3333

34-
SCHEMA_URI = "https://stac-extensions.github.io/eo/v1.0.0/schema.json"
34+
SCHEMA_URI: str = "https://stac-extensions.github.io/eo/v1.0.0/schema.json"
3535

36-
BANDS_PROP = "eo:bands"
37-
CLOUD_COVER_PROP = "eo:cloud_cover"
36+
BANDS_PROP: str = "eo:bands"
37+
CLOUD_COVER_PROP: str = "eo:cloud_cover"
3838

3939

4040
class Band:

0 commit comments

Comments
 (0)