Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused imports #12

Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion conda_build/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
from .conda_interface import url_path
from .conda_interface import root_dir
from .conda_interface import conda_private
from .conda_interface import dist_str_in_index
from .conda_interface import MatchSpec
from .conda_interface import reset_context
from .conda_interface import context
Expand Down
2 changes: 0 additions & 2 deletions conda_build/conda_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def try_exports(module, attr):
from conda.exports import (PY3, StringIO, input, iteritems, lchmod, string_types, # NOQA
text_type, TemporaryDirectory) # NOQA
from conda.exports import VersionOrder # NOQA
from conda.exports import dist_str_in_index # NOQA


TmpDownload = TmpDownload
Expand All @@ -78,7 +77,6 @@ def try_exports(module, attr):
PY3, input, iteritems, lchmod, string_types = PY3, input, iteritems, lchmod, string_types
text_type, TemporaryDirectory = text_type, TemporaryDirectory
ArgumentParser, CondaSession, VersionOrder = ArgumentParser, CondaSession, VersionOrder
dist_str_in_index = dist_str_in_index


from conda.core.package_cache import ProgressiveFetchExtract # NOQA
Expand Down