diff --git a/modules/icing/util.py b/modules/icing/util.py
index b3263ece77ab3116ac3f4e4a7fc70f4cf38e1897..3ad14932e5aba0007f4853a1defad18781d263c1 100644
--- a/modules/icing/util.py
+++ b/modules/icing/util.py
@@ -467,8 +467,8 @@ def run_icing_predict_image(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output
                 day_grd_dct[ds_name] = np.stack(day_data_dct[ds_name])
 
             preds_day_dct, probs_day_dct = \
-                model_module.run_evaluate_static_2(day_model, day_grd_dct, num_day_tiles, day_cth_max, day_night='DAY',
-                                                   l1b_or_l2=l1b_andor_l2, prob_thresh=prob_thresh,
+                model_module.run_evaluate_static_2(day_model, day_grd_dct, num_day_tiles, day_cth_max,
+                                                   prob_thresh=prob_thresh,
                                                    use_flight_altitude=use_flight_altitude,
                                                    flight_levels=flight_levels)
 
@@ -493,7 +493,7 @@ def run_icing_predict_image(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output
 
             preds_nght_dct, probs_nght_dct = \
                 model_module.run_evaluate_static_2(night_model, nght_grd_dct, num_nght_tiles, nght_cth_max,
-                                                   day_night='NIGHT', l1b_or_l2=l1b_andor_l2, prob_thresh=prob_thresh,
+                                                   prob_thresh=prob_thresh,
                                                    use_flight_altitude=use_flight_altitude, flight_levels=flight_levels)
             nght_idxs = np.array(nght_idxs)
             for flvl in flight_levels: