Skip to content

Commit 08ce42b

Browse files
committed
Update init
1 parent 0b68ddb commit 08ce42b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

chartlets.py/chartlets/components/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from .select import Select
1313
from .slider import Slider
1414
from .switch import Switch
15+
from .table import Table
1516
from .tabs import Tab
1617
from .tabs import Tabs
1718
from .typography import Typography

chartlets.py/demo/my_extension/my_panel_4.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
from chartlets import Component, Input, Output
2-
from chartlets.components import Box, Slider, Typography
2+
from chartlets.components import Box, Slider, Typography, Table
33

44
from server.context import Context
55
from server.panel import Panel
66

7-
from chartlets.components.table import Table
87

98
panel = Panel(__name__, title="Panel D")
109

chartlets.py/tests/components/table_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from chartlets.components.table import Table
1+
from chartlets.components import Table
22
from tests.component_test import make_base
33

44

0 commit comments

Comments
 (0)