Skip to content

Commit

Permalink
Add whitespaces to address pynorms errors
Browse files Browse the repository at this point in the history
Add extra whitespaces in exglobal_stage_ic.py to address E231 error.

Refs NOAA-EMC#2475
  • Loading branch information
KateFriedman-NOAA committed Jun 3, 2024
1 parent 87302c2 commit 9be34aa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scripts/exglobal_stage_ic.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ def main():
stage = Stage(config)

#Pull out all the configuration keys needed to run stage job
keys = ['RUN','MODE','DO_WAVE','DO_OCN','DO_ICE','DO_NEST',
'current_cycle','EXP_WARM_START','CDUMP','rCDUMP',
'ROTDIR','PARMgfs','ntiles','MEMDIR',
'BASE_CPLIC','waveGRD','OCNRES','USE_OCN_PERTURB_FILES',
'CPL_ATMIC','CPL_ICEIC','CPL_OCNIC','CPL_WAVIC']
keys = ['RUN', 'MODE', 'DO_WAVE', 'DO_OCN', 'DO_ICE', 'DO_NEST',
'current_cycle', 'EXP_WARM_START', 'CDUMP', 'rCDUMP',
'ROTDIR', 'PARMgfs', 'ntiles', 'MEMDIR',
'BASE_CPLIC', 'waveGRD', 'OCNRES', 'USE_OCN_PERTURB_FILES',
'CPL_ATMIC', 'CPL_ICEIC', 'CPL_OCNIC', 'CPL_WAVIC']

stage_dict = AttrDict()
for key in keys:
Expand All @@ -39,7 +39,7 @@ def main():
stage_sets = stage.determine_stage(stage_dict)

# Stage ICs
stage.execute_stage(stage_dict,stage_sets)
stage.execute_stage(stage_dict, stage_sets)

if __name__ == '__main__':
main()

0 comments on commit 9be34aa

Please sign in to comment.