Skip to content

Commit

Permalink
Using util.wrap_tuple_streams in DynamicMap.next method
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Sep 2, 2016
1 parent 0646bc7 commit 11a2742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/spaces.py
Expand Up @@ -729,7 +729,7 @@ def next(self):
(key, val) = (retval if isinstance(retval, tuple)
else (self.counter, retval))

key = util.wrap_tuple(key)
key = util.wrap_tuple_streams(key, self.kdims, self.streams)
if len(key) != len(self.key_dimensions):
raise Exception("Generated key does not match the number of key dimensions")

Expand Down

0 comments on commit 11a2742

Please sign in to comment.