From c8c6c9d08b13e55cbaaf7c9b791aa79f3f34326a Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Wed, 23 Jun 2021 10:28:58 -0500
Subject: [PATCH] minor

---
 modules/aeolus/aeolus_amv.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py
index 6b3409f4..b1133273 100644
--- a/modules/aeolus/aeolus_amv.py
+++ b/modules/aeolus/aeolus_amv.py
@@ -1933,7 +1933,7 @@ def create_file_new(match_dct, filename, clvrx_params):
     grd_x_len = 9
     grd_y_len = 9
     num_aparams = 7
-    num_aprofs = len(match_dct)
+    num_aprofs = 0
     max_num_alevels = 0
     max_num_amvs = 0
 
@@ -1948,6 +1948,7 @@ def create_file_new(match_dct, filename, clvrx_params):
     for key in keys:
         tup_s = match_dct.get(key)
         for tup in tup_s:
+            num_aprofs += 1
             prof = tup[3]
             lat = prof[0, 0]
             lon = prof[0, 1]
@@ -2027,7 +2028,7 @@ def create_file_new(match_dct, filename, clvrx_params):
     prf_time[:] = atimes
 
     idx = 0
-    for key in enumerate(keys):
+    for key in keys:
         tup_s = match_dct.get(key)
         for tup in tup_s:
             prof = tup[3]
-- 
GitLab