Skip to content

Commit

Permalink
Fix duplicate line in field_groups definition
Browse files Browse the repository at this point in the history
  • Loading branch information
mkavulich committed Dec 19, 2024
1 parent 4fd1872 commit a4ace4f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ush/set_cycle_and_obs_timeinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,6 @@ def get_obs_retrieve_times_by_day(
{'obtype': 'NOHRSC', 'time_type': 'cumul', 'field_groups': ['ASNOW']},
{'obtype': 'MRMS', 'time_type': 'inst', 'field_groups': ['REFC', 'RETOP']},
{'obtype': 'NDAS', 'time_type': 'inst', 'field_groups': ['SFC', 'UPA']},
{'obtype': 'NDAS', 'time_type': 'inst', 'field_groups': ['ADPSFC', 'ADPUPA']},
{'obtype': 'AERONET', 'time_type': 'inst', 'field_groups': ['AOD']},
{'obtype': 'AIRNOW', 'time_type': 'inst', 'field_groups': ['PM25', 'PM10']}
]
Expand Down Expand Up @@ -664,7 +663,6 @@ def get_obs_retrieve_times_by_day(
# We refer to these times as the vx comparison times.
vx_compare_times_by_day = dict()
for obs_dict in obs_info:

obtype = obs_dict['obtype']
obs_time_type = obs_dict['time_type']

Expand Down Expand Up @@ -826,7 +824,6 @@ def get_obs_retrieve_times_by_day(
# but grouped by cycle start date, regroup them by day and save results
# in obs_retrieve_times_by_day.
for obs_dict in obs_info:

obtype = obs_dict['obtype']
obs_time_type = obs_dict['time_type']

Expand Down

0 comments on commit a4ace4f

Please sign in to comment.