Skip to content

Commit

Permalink
Do not validate hvPlot Views (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Nov 1, 2023
1 parent 1c1e2b6 commit c1a0351
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lumen/views/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,10 @@ def __init__(self, **params):
params['groupby'] = [params['groupby']]
super().__init__(**params)

@classproperty
def _valid_keys_(cls):
return None


class hvPlotUIView(hvPlotBaseView):
"""
Expand Down Expand Up @@ -744,10 +748,6 @@ def __init__(self, **params):
self._linked_objs = []
super().__init__(**params)

@classproperty
def _valid_keys_(cls):
return super(hvPlotView, cls)._valid_keys_

def get_plot(self, df):
processed = {}
for k, v in self.kwargs.items():
Expand Down

0 comments on commit c1a0351

Please sign in to comment.