Skip to content

Commit

Permalink
Add __init__ to hv.Output to not overwrite ParameterizedFunction si…
Browse files Browse the repository at this point in the history
…gnature (#5799)
  • Loading branch information
hoxbro authored Jul 12, 2023
1 parent 3d3dad9 commit e2838c3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions holoviews/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,10 @@ class output(param.ParameterizedFunction):
the cell magic respectively.
"""

def __init__(self, *args, **kwargs):
# To not overwrite param.ParameterizedFunction signature below
super().__init__(*args, **kwargs)

@classmethod
def info(cls):
deprecate = ['filename', 'info', 'mode']
Expand Down

0 comments on commit e2838c3

Please sign in to comment.