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 fb8c3c7 commit bb335d6Copy full SHA for bb335d6
dash_bootstrap_components/__init__.py
@@ -4,6 +4,7 @@
4
5
from dash_bootstrap_components import _components, icons, themes
6
from dash_bootstrap_components._components import * # noqa
7
+from dash_bootstrap_components._components import Table
8
from dash_bootstrap_components._table import _generate_table_from_df
9
from dash_bootstrap_components._version import __version__
10
@@ -34,9 +35,7 @@
34
35
_component._css_dist = _css_dist
36
37
-sys.modules[__name__].Table.from_dataframe = classmethod(
38
- _generate_table_from_df
39
-)
+Table.from_dataframe = classmethod(_generate_table_from_df)
40
41
42
# TODO: when Python 3.6 support is dropped we can simplify this with PEP 562
0 commit comments