Fix typo in reading input to build_sequestration_potentials rule

Presumably needed since the transition to snakemake 8 storage providers
This commit is contained in:
Koen van Greevenbroek 2024-03-20 15:40:07 +01:00
parent 31c4eb98a2
commit bb898bf695

View File

@ -44,7 +44,7 @@ if __name__ == "__main__":
cf = snakemake.params.sequestration_potential cf = snakemake.params.sequestration_potential
gdf = gpd.read_file(snakemake.input.sequestration_potential[0]) gdf = gpd.read_file(snakemake.input.sequestration_potential)
regions = gpd.read_file(snakemake.input.regions_offshore) regions = gpd.read_file(snakemake.input.regions_offshore)
if cf["include_onshore"]: if cf["include_onshore"]: