Skip to content

Commit

Permalink
Fix pathname
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaehn committed Jan 8, 2024
1 parent f9bf445 commit cc162dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs/prepare_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def main(cfg):
if str(meteo_file).endswith('00'):
datafile_list.append(str(meteo_file) + cfg.meteo['suffix'])
else:
datafile_list_rest.append(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 cc162dd

Please sign in to comment.