Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix FigureWidget.show
  • Loading branch information
marthacryan committed Nov 12, 2024
commit 37c6ac248a614ec7b2d4768cddb21bf910d768b2
3 changes: 3 additions & 0 deletions packages/python/plotly/plotly/basewidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ def __init__(
# views of this widget
self._view_count = 0

def show(self, *args, **kwargs):
return self

# Python -> JavaScript Messages
# -----------------------------
def _send_relayout_msg(self, layout_data, source_view_id=None):
Expand Down