We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40151da commit a816d35Copy full SHA for a816d35
cwltool/utils.py
@@ -216,5 +216,5 @@ def random_outdir(): # type: () -> Text
216
""" Return the random directory name chosen to use for tool / workflow output """
217
# compute this once and store it as a function attribute - each subsequent call will return the same value
218
if not hasattr(random_outdir, 'outdir'):
219
- random_outdir.outdir = '/' + ''.join([random.choice(string.ascii_letters) for _ in range(6)])
+ random_outdir.outdir = '/' + ''.join([random.choice(string.ascii_letters) for _ in range(6)]) # type: ignore
220
return random_outdir.outdir
0 commit comments