Skip to content

Commit c4af950

Browse files
committed
Fix mypy
1 parent 7d5f8bf commit c4af950

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwltool/executors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ def execute(
8282
) -> Tuple[Union[Optional[CWLObjectType]], str]:
8383
"""Execute the process."""
8484

85-
self.final_output = [] # type: MutableSequence[Optional[CWLObjectType]]
86-
self.final_status = [] # type: List[str]
85+
self.final_output = []
86+
self.final_status = []
8787

8888
if not runtime_context.basedir:
8989
raise WorkflowException("Must provide 'basedir' in runtimeContext")

0 commit comments

Comments
 (0)