Skip to content

Commit

Permalink
no-op if the overlay is not a subcoordinate-y overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Apr 22, 2024
1 parent b3965b4 commit 07310a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions holoviews/operation/normalization.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ class subcoordinate_group_ranges(Operation):
"""

def _process(self, overlay, key=None):
if not getattr(overlay, 'subcoordinate_y', False):
return overlay
vmins = defaultdict(list)
vmaxs = defaultdict(list)
include_chart = False
Expand Down

0 comments on commit 07310a9

Please sign in to comment.