Skip to content

Commit 2183b45

Browse files
committed
Fix cyclic dependency in interaction.py
1 parent 129602d commit 2183b45

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

python/ipywidgets/ipywidgets/widgets/interaction.py

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,17 @@
1515
from IPython.display import clear_output, display
1616
from 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

3230
empty = Parameter.empty
3331

0 commit comments

Comments
 (0)