Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Jun 7, 2024
1 parent 8173be7 commit 559aa6a
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 @@ -232,7 +232,9 @@ def tile(
reproject_method = resampling_method

if not self.tile_exists(tile_x, tile_y, tile_z):
raise TileOutsideBounds(f"Tile(x={tile_x}, y={tile_y}, z={tile_z}) is outside bounds")
raise TileOutsideBounds(
f"Tile(x={tile_x}, y={tile_y}, z={tile_z}) is outside bounds"
)

ds = self.input
if nodata is not None:
Expand Down

0 comments on commit 559aa6a

Please sign in to comment.