Skip to content

Commit

Permalink
Fix adding pipeline_step to config
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed Nov 4, 2023
1 parent 33b6d15 commit a9fba76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sup3r/postprocessing/data_collect_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ def from_config(ctx, config_file, verbose=False, pipeline_step=None):
f_config.update({'features': [feature],
'out_file': f_out_file,
'job_name': f_job_name,
'log_file': f_log_file,
'pipeline_step': pipeline_step})
'log_file': f_log_file})

configs.append(f_config)

for config in configs:
ctx.obj['NAME'] = config['job_name']
config['pipeline_step'] = pipeline_step
cmd = Collector.get_node_cmd(config)

cmd_log = '\n\t'.join(cmd.split('\n'))
Expand Down

0 comments on commit a9fba76

Please sign in to comment.