We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5561df commit 5764d44Copy full SHA for 5764d44
shinywidgets/_render_widget_base.py
@@ -59,10 +59,10 @@ def __init__(
59
fillable: Optional[bool] = None,
60
):
61
super().__init__(_fn)
62
- self.width: Optional[str] = width
63
- self.height: Optional[str] = height
64
- self.fill: Optional[bool] = fill
65
- self.fillable: Optional[bool] = fillable
+ self.width = width
+ self.height = height
+ self.fill = fill
+ self.fillable = fillable
66
67
# self._value: ValueT | None = None # TODO-barret; Not right type
68
# self._widget: WidgetT | None = None
0 commit comments