Skip to content

Commit

Permalink
Merge pull request #1164 from ioam/top_level_util
Browse files Browse the repository at this point in the history
Correctly import top-level util module
  • Loading branch information
jlstevens authored Feb 28, 2017
2 parents 96c36df + f9d3a94 commit 451d4e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/__init__.py
Original file line number Diff line number Diff line change
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

0 comments on commit 451d4e1

Please sign in to comment.