From 45c12e5b27c7ebce22c5762e2d11ab30fe25c7b2 Mon Sep 17 00:00:00 2001 From: James Fulton Date: Fri, 22 Dec 2023 13:49:47 +0000 Subject: [PATCH] bug fix --- pvnet_app/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pvnet_app/utils.py b/pvnet_app/utils.py index a07b804..0978499 100644 --- a/pvnet_app/utils.py +++ b/pvnet_app/utils.py @@ -65,7 +65,7 @@ def populate_data_config_sources(input_path, output_path): config["input_data"][source][f"{source}_zarr_path"] = production_paths[source] # NWP is nested so much be treated separately - if ("ukv" in config["input_data"]): + if "nwp" in config["input_data"]: nwp_config = config["input_data"]["nwp"] for nwp_source in nwp_config.keys(): if nwp_config[nwp_source][f"nwp_zarr_path"]!="":