Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions data/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from tempfile import mkdtemp
from os import makedirs, environ
from os.path import isdir, exists, abspath, dirname, realpath
from shutil import copytree, rmtree
from contextlib import contextmanager
from os import environ, makedirs
from os.path import abspath, dirname, exists, isdir, realpath
from shutil import copytree, rmtree
from tempfile import mkdtemp


@contextmanager
def copy_of_directory(src, dst=None):
Expand Down