Skip to content

Commit

Permalink
Fix grammar on VRT size check (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie authored Dec 15, 2024
1 parent e88f982 commit 9bab8a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dolphin/io/_readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,7 @@ def _assert_images_same_size(files):
with ThreadPoolExecutor(5) as executor:
sizes = list(executor.map(io.get_raster_xysize, files))
if len(set(sizes)) > 1:
msg = f"Not files have same raster (x, y) size:\n{set(sizes)}"
msg = f"Not all files have the same raster (x, y) size:\n{set(sizes)}"
raise ValueError(msg)


Expand Down

0 comments on commit 9bab8a7

Please sign in to comment.