Skip to content
Snippets Groups Projects
Commit 741f72fe authored by leufen1's avatar leufen1
Browse files

another fix to be sure that parameter stations is a list

parent 9562b752
No related branches found
No related tags found
5 merge requests!192include Develop,!191Resolve "release v1.1.0",!168Lukas issue193 bug index error,!167Resolve "bug: too many indices in PlotClimatologicalSkillScore",!139Draft: Resolve "KZ filter"
Pipeline #48715 failed
...@@ -279,7 +279,7 @@ class ExperimentSetup(RunEnvironment): ...@@ -279,7 +279,7 @@ class ExperimentSetup(RunEnvironment):
path_config.check_path_and_create(self.data_store.get("logging_path")) path_config.check_path_and_create(self.data_store.get("logging_path"))
# setup for data # setup for data
self._set_param("stations", stations, default=DEFAULT_STATIONS) self._set_param("stations", helpers.to_list(stations), default=DEFAULT_STATIONS)
self._set_param("statistics_per_var", statistics_per_var, default=DEFAULT_VAR_ALL_DICT) self._set_param("statistics_per_var", statistics_per_var, default=DEFAULT_VAR_ALL_DICT)
self._set_param("variables", variables, default=list(self.data_store.get("statistics_per_var").keys())) self._set_param("variables", variables, default=list(self.data_store.get("statistics_per_var").keys()))
self._set_param("start", start, default=DEFAULT_START) self._set_param("start", start, default=DEFAULT_START)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment