-
Notifications
You must be signed in to change notification settings - Fork 758
Closed
Description
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]
.
Metadata
Metadata
Assignees
Labels
No labels