Skip to content

Commit

Permalink
Address pynorm errors in exglobal_stage_ic.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KateFriedman-NOAA committed Jun 3, 2024
1 parent 9be34aa commit c2232cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/exglobal_stage_ic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# Initialize root logger
logger = Logger(level=os.environ.get("LOGGING_LEVEL", "DEBUG"), colored_log=True)


@logit(logger)
def main():

Expand All @@ -16,7 +17,7 @@ def main():
# Instantiate the Stage object
stage = Stage(config)

#Pull out all the configuration keys needed to run stage job
# 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',
Expand All @@ -41,5 +42,6 @@ def main():
# Stage ICs
stage.execute_stage(stage_dict, stage_sets)


if __name__ == '__main__':
main()

0 comments on commit c2232cd

Please sign in to comment.