Skip to content

Commit

Permalink
Declared DynamicMap as not being _deep_indexable
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Sep 4, 2016
1 parent ce1ed4c commit d8782b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/dimension.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def __init__(self, data, **params):

def _valid_dimensions(self, dimensions):
"""Validates key dimension input
Returns kdims if no dimensions are specified"""
if dimensions is None:
dimensions = self.kdims
Expand Down
2 changes: 2 additions & 0 deletions holoviews/core/spaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,8 @@ class DynamicMap(HoloMap):
by a HoloMap with fixed sampling.
""")

_deep_indexable = False

def __init__(self, callback, initial_items=None, **params):
super(DynamicMap, self).__init__(initial_items, callback=callback, **params)

Expand Down

0 comments on commit d8782b8

Please sign in to comment.