Skip to content

Commit 567f470

Browse files
author
Peter Amstutz
committed
Fix mypy signature.
1 parent d59cdbd commit 567f470

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwltool/job.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def deref_links(outputs): # type: (Any) -> None
9999
deref_links(v)
100100

101101
def relink_initialworkdir(pathmapper, host_outdir, container_outdir, inplace_update=False):
102-
# type: (PathMapper, bool) -> None
102+
# type: (PathMapper, Text, Text, bool) -> None
103103
for src, vol in pathmapper.items():
104104
if not vol.staged:
105105
continue
@@ -313,7 +313,7 @@ def run(self, pull_image=True, rm_container=True,
313313
class DockerCommandLineJob(JobBase):
314314

315315
def add_volumes(self, pathmapper, runtime):
316-
# type: (PathMapper, List[Text], bool) -> None
316+
# type: (PathMapper, List[Text]) -> None
317317

318318
host_outdir = self.outdir
319319
container_outdir = self.builder.outdir

0 commit comments

Comments
 (0)