diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py
index d3ee930c6d5b7963da7bed1784760d68a3a0a2b9..46248d93121687768fdc1c67cbb8356e134be36a 100644
--- a/modules/aeolus/aeolus_amv.py
+++ b/modules/aeolus/aeolus_amv.py
@@ -59,7 +59,7 @@ class AMVFiles:
 
 class Framework(AMVFiles):
     def __init__(self, files_path, file_time_span, band='14'):
-        super().__init__(self, files_path, file_time_span, '*WINDS_AMV_EN-' + band + '*.nc', band)
+        super().__init__(files_path, file_time_span, '*WINDS_AMV_EN-' + band + '*.nc', band)
 
     def get_navigation(self):
         GEOSNavigation(sub_lon=-75.0)
@@ -77,7 +77,7 @@ class Framework(AMVFiles):
 
 class OPS(AMVFiles):
     def __init__(self, files_path, file_time_span, band='14'):
-        super().__init__(self, files_path, file_time_span, 'OR_ABI-L2-DMWF*'+'C'+band+'*.nc', band)
+        super().__init__(files_path, file_time_span, 'OR_ABI-L2-DMWF*'+'C'+band+'*.nc', band)
 
     def get_navigation(self):
         return GEOSNavigation(sub_lon=-75.0)
@@ -94,7 +94,7 @@ class OPS(AMVFiles):
 
 class CarrStereo(AMVFiles):
     def __init__(self, files_path, file_time_span, band='14'):
-        super().__init__(self, files_path, file_time_span, '*WINDS_AMV_EN-' + band + '*.nc', band)
+        super().__init__(files_path, file_time_span, '*WINDS_AMV_EN-' + band + '*.nc', band)
 
     def get_navigation(self):
         return GEOSNavigation(sub_lon=-137.0)