Skip to content

Commit

Permalink
fix typing assertion error
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Aug 29, 2023
1 parent f080d0d commit c205d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sweets/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def __init__(self, **data: Any) -> None:
self._water_mask_filename = self.work_dir / "watermask.flg"

# Expanded version used for internal processing
assert isinstance(self.bbox, Bbox)
assert isinstance(self.bbox, tuple)
self._dem_bbox = (
self.bbox[0] - 0.25,
self.bbox[1] - 0.25,
Expand Down

0 comments on commit c205d6c

Please sign in to comment.