Skip to content

Commit

Permalink
Merge branch 'async' of github.com:C2SM/processing-chain into async
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaehn committed Jan 8, 2024
2 parents ae3a814 + 02e610a commit 971ae39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jobs/prepare_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ def main(cfg):
if str(meteo_file).endswith('00'):
datafile_list.append(str(meteo_file) + cfg.meteo['suffix'])
else:
datafile_list_rest.append(str(meteo_file) + cfg.meteo['suffix'])
datafile_list_rest.append(
str(meteo_file) + cfg.meteo['suffix'])
datafile_list = ' '.join([str(v) for v in datafile_list])
datafile_list_rest = ' '.join([str(v) for v in datafile_list_rest])
datafile_list_chem = ' '.join([str(v) for v in datafile_list_chem])
Expand Down

0 comments on commit 971ae39

Please sign in to comment.