Skip to content

Commit 01aafb0

Browse files
committed
Correct type errors
1 parent 8c2772e commit 01aafb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwltool/docker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,8 @@ def add_volumes(self, pathmapper, runtime, secret_store=None):
256256
with os.fdopen(fd, "wb") as f:
257257
f.write(contents.encode("utf-8"))
258258
runtime.append(u"--volume=%s:%s:rw" % (
259-
os.path.realpath(docker_windows_path_adjust(createtmp)),
260-
os.path.realpath(docker_windows_path_adjust(vol.target))))
259+
docker_windows_path_adjust(os.path.realpath(createtmp)),
260+
docker_windows_path_adjust(os.path.realpath(vol.target))))
261261

262262
def create_runtime(self, env, runtimeContext):
263263
# type: (MutableMapping[Text, Text], RuntimeContext) -> List

0 commit comments

Comments
 (0)