Skip to content

Commit 6857381

Browse files
committed
Fix CI failures
1 parent ce4e682 commit 6857381

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pystac/extensions/raster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ def bands(self) -> Optional[List[RasterBand]]:
729729
"""
730730
return map_opt(
731731
lambda bands: [RasterBand(b) for b in bands],
732-
self.summaries.get_list(BANDS_PROP, Dict[str, Any]),
732+
self.summaries.get_list(BANDS_PROP),
733733
)
734734

735735
@bands.setter

pystac/summaries.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ def from_dict(cls, d: Dict[str, Any]) -> "RangeSummary[T]":
6161
return cls(minimum=minimum, maximum=maximum)
6262

6363

64-
FIELDS_JSON_URL = "https://cdn.jsdelivr.net/npm/@radiantearth/stac-fields/fields-normalized.json"
64+
FIELDS_JSON_URL = (
65+
"https://cdn.jsdelivr.net/npm/@radiantearth/stac-fields/fields-normalized.json"
66+
)
6567

6668

6769
@lru_cache(maxsize=None)

0 commit comments

Comments
 (0)