@@ -975,7 +975,7 @@ def _list_outputs(self):
975
975
if self .inputs .sort_filelist :
976
976
filelist = human_order_sorted (filelist )
977
977
outputs [key ] = simplify_list (filelist )
978
- for argnum , arglist in enumerate ( args ) :
978
+ for arglist in args :
979
979
maxlen = 1
980
980
for arg in arglist :
981
981
if isinstance (arg , (str , bytes )) and hasattr (self .inputs , arg ):
@@ -1250,7 +1250,7 @@ def _list_outputs(self):
1250
1250
if self .inputs .sort_filelist :
1251
1251
filelist = human_order_sorted (filelist )
1252
1252
outputs [key ] = simplify_list (filelist )
1253
- for argnum , arglist in enumerate ( args ) :
1253
+ for arglist in args :
1254
1254
maxlen = 1
1255
1255
for arg in arglist :
1256
1256
if isinstance (arg , (str , bytes )) and hasattr (self .inputs , arg ):
@@ -1995,7 +1995,7 @@ def _list_outputs(self):
1995
1995
if file_object .exists ()
1996
1996
]
1997
1997
)
1998
- for argnum , arglist in enumerate ( args ) :
1998
+ for arglist in args :
1999
1999
maxlen = 1
2000
2000
for arg in arglist :
2001
2001
if isinstance (arg , (str , bytes )) and hasattr (self .inputs , arg ):
@@ -2609,7 +2609,7 @@ def _list_outputs(self):
2609
2609
if not args :
2610
2610
outputs [key ] = self ._get_files_over_ssh (template )
2611
2611
2612
- for argnum , arglist in enumerate ( args ) :
2612
+ for arglist in args :
2613
2613
maxlen = 1
2614
2614
for arg in arglist :
2615
2615
if isinstance (arg , (str , bytes )) and hasattr (self .inputs , arg ):
0 commit comments