diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py
index 6aea45487dacb1e0edc275675efce54fbf02414a..c496c8ad8e49b26a7f06868f142a8c28d2018d11 100644
--- a/modules/aeolus/aeolus_amv.py
+++ b/modules/aeolus/aeolus_amv.py
@@ -378,14 +378,12 @@ sub_lon = -137.0  # GOES-17
 # return dict: aeolus time -> tuple (amv_lon, amv_lat, amv_pres, amv_spd, amv_dir)
 def match_amvs_to_aeolus(aeolus_dict, amv_files_path, amv_source='OPS', band='14', amv_files=None):
     nav = amv_files.get_navigation()
-    #nav = GEOSNavigation(sub_lon=sub_lon)
     match_dict = {}
 
     keys = list(aeolus_dict.keys())
 
     last_f_idx = -1
     for key in keys:
-        #fname, ftime, f_idx = get_file_containing_time(key, amv_files_path, amv_file_duration, amv_source, band)
         fname, ftime, f_idx = amv_files.get_file_containing_time(key)
         if f_idx is None:
             continue
@@ -534,7 +532,6 @@ def create_amv_to_aeolus_match_file(aeolus_files_dir, amv_files_dir, outfile=Non
     if amv_source == 'CARR':
         amv_files = CarrStereo(amv_files_dir, 60, band)
 
-    #m_d = match_amvs_to_aeolus(a_d, amv_files_dir, amv_source, band)
     m_d = match_amvs_to_aeolus(a_d, amv_files_dir, amv_source, band, amv_files)
 
     if outfile is not None: