Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix python style errors #1330

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion test/diff_grib_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
Path to the second grib2 file

'''

import re
import sys
import subprocess
Expand Down
2 changes: 0 additions & 2 deletions workflow/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,6 @@ def _get_cycled_task_names(self):

gdas_tasks += gdas_gfs_common_tasks_after_fcst



if self.do_wave and 'gdas' in self.wave_cdumps:
if self.do_wave_bnd:
gdas_tasks += wave_bndpnt_tasks
Expand Down
2 changes: 1 addition & 1 deletion workflow/rocoto/workflow_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ def create_wf_task(task_name, resources,
'varval': f'{varval}',
'vardict': vardict}

cycledefstr = cdump.replace('enkf','') if cycledef is None else cycledef
cycledefstr = cdump.replace('enkf', '') if cycledef is None else cycledef

task_dict = {'taskname': f'{tasknamestr}',
'cycledef': f'{cycledefstr}',
Expand Down