diff --git a/src/depiction_targeted_preproc/app_interface/dispatch_individual_resources.py b/src/depiction_targeted_preproc/app_interface/dispatch_individual_resources.py index 850fa19..efb6b45 100644 --- a/src/depiction_targeted_preproc/app_interface/dispatch_individual_resources.py +++ b/src/depiction_targeted_preproc/app_interface/dispatch_individual_resources.py @@ -71,7 +71,7 @@ def _dispatch_jobs_dataset_flow(self, definition: WorkunitDefinition, params: di ) paths = [] for row in dataset_df.iter_rows(named=True): - resource_id = row[self._config.dataset_resource_column] + resource_id = int(row[self._config.dataset_resource_column]) row_params = {name: row[dataset_name] for dataset_name, name in self._config.dataset_param_columns} paths.append(self.dispatch_job(resource=resources[resource_id], params=params | row_params)) return paths