Skip to content

Commit

Permalink
Small improvements to vscode support (#3765)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro authored Aug 19, 2022
1 parent e1d3bfc commit 41ef6cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/viewable.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def _repr_mimebundle_(self, include=None, exclude=None):
if config.comms in ('vscode', 'ipywidgets'):
widget = ipywidget(self)
if hasattr(widget, '_repr_mimebundle_'):
return widget._repr_mimebundle_(include, exclude)
return widget._repr_mimebundle_(include=include, exclude=exclude)
plaintext = repr(widget)
if len(plaintext) > 110:
plaintext = plaintext[:110] + '…'
Expand Down

0 comments on commit 41ef6cd

Please sign in to comment.