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 50d0e81 commit a61ae1fCopy full SHA for a61ae1f
cwltool/utils.py
@@ -217,4 +217,4 @@ def random_outdir(): # type: () -> Text
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)]) # type: ignore
220
- return random_outdir.outdir
+ return random_outdir.outdir # type: ignore
0 commit comments