Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Sep 4, 2024
1 parent 9736422 commit 375dc1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rio_tiler/io/xarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ def __attrs_post_init__(self):
or self.bounds[2] > 180
or self.bounds[3] > 90
):
raise InvalidGeographicBounds(f"Invalid geographic bounds: {self.bounds}. Must be within (-180, -90, 180, 90).")
raise InvalidGeographicBounds(
f"Invalid geographic bounds: {self.bounds}. Must be within (-180, -90, 180, 90)."
)

self._dims = [
d
Expand Down

0 comments on commit 375dc1e

Please sign in to comment.