diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index f780fba6e9af7294ed24cc817c9c8d940c3641c0..1fd9d11cf7df90fe8f9334a1fb35ca202044783c 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -20,6 +20,17 @@ time_keys = list(ice_dict.keys())
 
 hist = np.zeros(20)
 
+
+def get_clavrx_datasource(timestamp):
+    dt_obj, time_tup = get_time_tuple_utc(timestamp)
+    date_dir_str = dt_obj.strftime(dir_fmt)
+    ds = ds_dct.get(date_dir_str)
+    if ds is None:
+        ds = CLAVRx(clavrx_dir + date_dir_str + '/')
+        ds_dct[date_dir_str] = ds
+    return ds
+
+
 for idx, time in enumerate(time_keys):
     if (idx % 4) != 0:
         continue
@@ -37,17 +48,6 @@ for idx, time in enumerate(time_keys):
         counts, edges = np.histogram(images[0,], range=[150, 350], bins=20)
         hist += counts
 
-
-def get_clavrx_datasource(timestamp):
-    dt_obj, time_tup = get_time_tuple_utc(timestamp)
-    date_dir_str = dt_obj.strftime(dir_fmt)
-    ds = ds_dct.get(date_dir_str)
-    if ds is None:
-        ds = CLAVRx(clavrx_dir + date_dir_str + '/')
-        ds_dct[date_dir_str] = ds
-    return ds
-
-
 f = open('/home/rink/ice_hist.pkl', 'wb')
 pickle.dump(hist, f)
 f.close()