diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 249d1d6a341abb30264ac2b388a5128bb363926a..a48f6ca9b720525bd5a47e9d93de01ecfb6909c1 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -72,10 +72,12 @@ def get_grid_values(h5f, grid_name, j_c, i_c, half_width, scale_factor_name='sca
     hfds = h5f[grid_name]
     attrs = hfds.attrs
     ylen, xlen = hfds.shape
+
     j_l = j_c-half_width
     i_l = i_c-half_width
     if j_l < 0 or i_l < 0:
         return None
+
     j_r = j_c+half_width+1
     i_r = i_c+half_width+1
     if j_r >= ylen or i_r >= xlen: