Skip to content

Commit

Permalink
Inline imports for pickle compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 22, 2019
1 parent dcb9637 commit ec52102
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/accessors.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

from . import util
from .pprint import PrettyPrinter
from .options import Options, Store


class Apply(object):
Expand Down Expand Up @@ -326,6 +325,7 @@ def get(self, group=None, backend=None):
Options object associated with the object containing the
applied option keywords.
"""
from .options import Store, Options
keywords = {}
groups = Options._option_groups if group is None else [group]
backend = backend if backend else Store.current_backend
Expand Down
1 change: 1 addition & 0 deletions holoviews/core/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
import numpy as np

import param
from .accessors import Opts # noqa (clean up in 2.0)
from .tree import AttrTree
from .util import sanitize_identifier, group_sanitizer,label_sanitizer, basestring, OrderedDict
from .pprint import InfoPrinter
Expand Down

0 comments on commit ec52102

Please sign in to comment.