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

Correctly import top-level util module #1164

Merged
merged 1 commit into from Feb 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion holoviews/__init__.py
Expand Up @@ -11,6 +11,7 @@
__version__ = param.Version(release=(1,6,2), fpath=__file__,
commit="$Format:%h$", reponame='holoviews')

import holoviews.util
from .core import archive # noqa (API import)
from .core.dimension import OrderedDict, Dimension # noqa (API import)
from .core.boundingregion import BoundingBox # noqa (API import)
Expand All @@ -24,7 +25,6 @@
from .interface import * # noqa (API import)
from .operation import ElementOperation, MapOperation, TreeOperation # noqa (API import)
from .element import * # noqa (API import)
from . import util # noqa (API import)
from .element import __all__ as elements_list

# Surpress warnings generated by NumPy in matplotlib
Expand Down