Skip to content

Commit

Permalink
#653: added "__version__" entry to dtale module
Browse files Browse the repository at this point in the history
  • Loading branch information
aschonfeld committed Mar 30, 2022
1 parent 06261bd commit 44617dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dtale/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
# flake8: NOQA
from dtale.app import show, get_instance, instances, offline_chart # isort:skip
from dtale.cli.loaders import LOADERS # isort:skip
from dtale.cli.clickutils import retrieve_meta_info_and_version
from dtale.global_state import update_id # isort:skip

ALLOW_CELL_EDITS = True
Expand All @@ -18,3 +19,6 @@
for loader_name, loader in LOADERS.items():
if hasattr(loader, "show_loader"):
globals()["show_{}".format(loader_name)] = loader.show_loader


__version__ = retrieve_meta_info_and_version("dtale")[1]

0 comments on commit 44617dc

Please sign in to comment.