Skip to content

Commit

Permalink
Update processing_utils.py
Browse files Browse the repository at this point in the history
Fix param typo
  • Loading branch information
bartoszptak authored Jan 4, 2024
1 parent 84c0834 commit 0fc4287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deepness/processing/processing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_raster_block(band_number_):
extent,
image_size[0], image_size[1])
block_height, block_width = raster_block.height(), raster_block.width()
if block_width == 0 or block_width == 0:
if block_height == 0 or block_width == 0:
raise Exception("No data on layer within the expected extent!")
return raster_block

Expand Down

0 comments on commit 0fc4287

Please sign in to comment.