Skip to content

Commit 4b7a0a0

Browse files
committed
Fix render_bokeh
1 parent 8d4323b commit 4b7a0a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shinywidgets/_render_widget.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class render_altair(render_widget_base[ValueT, JupyterChart]):
3636
...
3737

3838
class render_bokeh(render_widget_base[ValueT, BokehModel]):
39-
def auto_output_ui(self, id: str) -> Tag:
40-
res = super().auto_output_ui(id)
39+
def auto_output_ui(self) -> Tag:
40+
res = super().auto_output_ui()
4141
res.children.append(bokeh_dependency())
4242
return res
4343

0 commit comments

Comments
 (0)