-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
26 lines (23 loc) · 812 Bytes
/
__init__.py
File metadata and controls
26 lines (23 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright (c) 2019-2026 by Brockmann Consult Development team
# Permissions are hereby granted under the terms of the MIT License:
# https://opensource.org/licenses/MIT.
from chartlets import Extension
from .my_panel_1 import panel as my_panel_1
from .my_panel_2 import panel as my_panel_2
from .my_panel_3 import panel as my_panel_3
from .my_panel_4 import panel as my_panel_4
from .my_panel_5 import panel as my_panel_5
from .my_panel_6 import panel as my_panel_6
from .my_panel_7 import panel as my_panel_7
from .my_panel_8 import panel as my_panel_8
from .my_panel_9 import panel as my_panel_9
ext = Extension(__name__)
ext.add(my_panel_1)
ext.add(my_panel_2)
ext.add(my_panel_3)
ext.add(my_panel_4)
ext.add(my_panel_5)
ext.add(my_panel_6)
ext.add(my_panel_7)
ext.add(my_panel_8)
ext.add(my_panel_9)