Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
Feature/fix init file (#327)
Browse files Browse the repository at this point in the history
* Fix init file

* change version to 2.0.1
  • Loading branch information
jrobinAV authored Sep 29, 2022
1 parent 720cf06 commit c458fff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/avaiga/taipy-core",
version="2.0.0",
version="2.0.1",
zip_safe=False,
extras_require=extras_require,
)
7 changes: 4 additions & 3 deletions src/taipy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@

if find_spec("taipy"):
if find_spec("taipy.config"):
pass
from taipy.config import *
from taipy.logger import *

if find_spec("taipy.core"):
from taipy.core import *
Expand All @@ -27,7 +28,7 @@
_init_gui_enterprise(Gui)

if find_spec("taipy.rest"):
pass
from taipy.rest import Rest

if find_spec("taipy._run"):
pass
from taipy._run import _run as run

0 comments on commit c458fff

Please sign in to comment.