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.
In a few places (e.g., 3rd cell here), we have:
root_dir = tempfile.mkdtemp if directory is None else directory
which is missing the brackets:
root_dir = tempfile.mkdtemp() if directory is None else directory
Might be worth grepping and replacing all mkdtemp[space] with mkdtemp()[space].
mkdtemp[space]
mkdtemp()[space]