Skip to content

Commit

Permalink
Reverted to returning NotImplemented
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Nov 27, 2018
1 parent 82163e4 commit 1f19f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/overlay.py
Expand Up @@ -194,7 +194,7 @@ def dynamic_mul(*args, **kwargs):
return other.clone(shared_data=False, callback=callback,
streams=[])
elif not isinstance(other, ViewableElement):
raise NotImplementedError
return NotImplemented
return Overlay([self, other])


Expand Down

0 comments on commit 1f19f82

Please sign in to comment.