From 171d5d005315a1cead67fea4fa698338eef441a3 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Wed, 12 May 2021 12:26:05 -0500 Subject: [PATCH] minor... --- modules/icing/pirep_goes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 6539f167..058e5110 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -451,6 +451,7 @@ def process(ice_dct, no_ice_dct, neg_ice_dct): n_rpts = new_ice_dct.get(key) if n_rpts is None: n_rpts = [] + new_ice_dct[key] = n_rpts n_rpts.append(tup) # ----------------------------------------------------- @@ -472,6 +473,7 @@ def process(ice_dct, no_ice_dct, neg_ice_dct): n_rpts = new_no_ice_dct.get(key) if n_rpts is None: n_rpts = [] + new_no_ice_dct[key] = n_rpts n_rpts.append(tup) # ------------------------------------------------- -- GitLab