Skip to content

Commit a61ae1f

Browse files
authored
one last type change
1 parent 50d0e81 commit a61ae1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,4 +217,4 @@ def random_outdir(): # type: () -> Text
217217
# compute this once and store it as a function attribute - each subsequent call will return the same value
218218
if not hasattr(random_outdir, 'outdir'):
219219
random_outdir.outdir = '/' + ''.join([random.choice(string.ascii_letters) for _ in range(6)]) # type: ignore
220-
return random_outdir.outdir
220+
return random_outdir.outdir # type: ignore

0 commit comments

Comments
 (0)