We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 292ed63 commit fcfd313Copy full SHA for fcfd313
dashipy/my_extension/__init__.py
@@ -1,3 +1,7 @@
1
-from .my_extension import ext
+from dashipy.lib.extension import Extension
2
+from .my_panel_1 import panel as my_panel_1
3
+from .my_panel_2 import panel as my_panel_2
4
-ext2 = 29
5
+ext = Extension(__name__)
6
+ext.add(my_panel_1)
7
+ext.add(my_panel_2)
dashipy/my_extension/my_extension.py
0 commit comments