Skip to content

Commit

Permalink
Merge pull request stac-utils#377 from schwehr/eo-typing
Browse files Browse the repository at this point in the history
eo.py: Add more typing info for module level strings
  • Loading branch information
lossyrob authored Jun 1, 2021
2 parents af71e74 + ec5d222 commit a6ac489
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pystac/extensions/eo.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@

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

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

BANDS_PROP = "eo:bands"
CLOUD_COVER_PROP = "eo:cloud_cover"
BANDS_PROP: str = "eo:bands"
CLOUD_COVER_PROP: str = "eo:cloud_cover"


class Band:
Expand Down

0 comments on commit a6ac489

Please sign in to comment.