Skip to content

Commit 5764d44

Browse files
committed
Remove redundant typing
1 parent d5561df commit 5764d44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shinywidgets/_render_widget_base.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ def __init__(
5959
fillable: Optional[bool] = None,
6060
):
6161
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
62+
self.width = width
63+
self.height = height
64+
self.fill = fill
65+
self.fillable = fillable
6666

6767
# self._value: ValueT | None = None # TODO-barret; Not right type
6868
# self._widget: WidgetT | None = None

0 commit comments

Comments
 (0)