Skip to content

Commit

Permalink
appease mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariana Barzinpour committed Jan 29, 2025
1 parent d990c23 commit d62f32c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion odc/stac/eo3/_eo3converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def _item_to_ds(
if cfg is None:
cfg = {}

md: RasterCollectionMetadata = getattr(product, "_md", None)
md: RasterCollectionMetadata | None = getattr(product, "_md", None)
uuid_cfg = cfg.get("uuid", {})
ds_uuid = _compute_uuid(
item, mode=uuid_cfg.get("mode", "auto"), extras=uuid_cfg.get("extras", [])
Expand Down

0 comments on commit d62f32c

Please sign in to comment.