Skip to content

Commit 05b3276

Browse files
committed
Loosen type hint on cleanIntermediate
1 parent 1b660e0 commit 05b3276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def relink(relinked, # type: Dict[Text, Text]
375375
return outputObj
376376

377377

378-
def cleanIntermediate(output_dirs): # type: (Set[Text]) -> None
378+
def cleanIntermediate(output_dirs): # type: (Iterable[Text]) -> None
379379
for a in output_dirs:
380380
if os.path.exists(a):
381381
_logger.debug(u"Removing intermediate output directory %s", a)

0 commit comments

Comments
 (0)