Skip to content
Snippets Groups Projects
Commit 53cb18d0 authored by Vellekoop, Sam's avatar Vellekoop, Sam
Browse files

Merge branch '41-bug-mnp-is-checking-raster-bounds-even-when-no-rasters-are-given' into 'master'

Resolve "Bug: MNP is checking raster bounds even when no rasters are given"

Closes #41

See merge request MNP/mnp!45
parents 44abba03 ce163af1
No related branches found
No related tags found
No related merge requests found
...@@ -374,7 +374,8 @@ class InputPathway: ...@@ -374,7 +374,8 @@ class InputPathway:
f'land_types source does not exist: {configuration["land_types"]["source"]}' f'land_types source does not exist: {configuration["land_types"]["source"]}'
) )
) )
self.procedures.append(VerifyRasterBounds(raster_paths)) if raster_paths:
self.procedures.append(VerifyRasterBounds(raster_paths))
if ( if (
configuration["output"]["environmental_factor_hotspot_map"].capitalize() configuration["output"]["environmental_factor_hotspot_map"].capitalize()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment