Skip to content

Commit

Permalink
Merge 8a4e61f into 93506d9
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 2, 2017
2 parents 93506d9 + 8a4e61f commit 4d3402c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions holoviews/util.py
Expand Up @@ -50,8 +50,10 @@ def __call__(self, map_obj, **params):
elif not isinstance(stream, Stream):
raise ValueError('Stream must only contain Stream '
'classes or instances')
stream.update(**{k: self.p.operation.p.get(k, v) for k, v in
stream.contents.items()})
updates = {k: self.p.operation.p.get(k) for k, v in stream.contents.items()
if v is None and k in self.p.operation.p}
if updates:
stream.update(trigger=False, **updates)
streams.append(stream)
return dmap.clone(streams=streams)
return dmap
Expand Down

0 comments on commit 4d3402c

Please sign in to comment.