File tree Expand file tree Collapse file tree 1 file changed +11
-13
lines changed
python/ipywidgets/ipywidgets/widgets Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Original file line number Diff line number Diff line change 1515from IPython .display import clear_output , display
1616from traitlets import Any , HasTraits , Unicode , observe
1717
18- from . import (
19- Button ,
20- Checkbox ,
21- DOMWidget ,
22- Dropdown ,
23- FloatSlider ,
24- IntSlider ,
25- Output ,
26- Text ,
27- ValueWidget ,
28- VBox ,
29- Widget ,
30- )
18+ from .domwidget import DOMWidget
19+ from .valuewidget import ValueWidget
20+ from .widget import Widget
21+ from .widget_bool import Checkbox
22+ from .widget_box import VBox
23+ from .widget_button import Button
24+ from .widget_float import FloatSlider
25+ from .widget_int import IntSlider
26+ from .widget_output import Output
27+ from .widget_selection import Dropdown
28+ from .widget_string import Text
3129
3230empty = Parameter .empty
3331
You can’t perform that action at this time.
0 commit comments