Browse Source

Update taipy/core/_core.py

Co-authored-by: Jean-Robin <jeanrobin.medori@avaiga.com>
Toan Quach 8 months ago
parent
commit
286a233794
1 changed files with 2 additions and 1 deletions
  1. 2 1
      taipy/core/_core.py

+ 2 - 1
taipy/core/_core.py

@@ -23,6 +23,7 @@ class Core:
     def __new__(cls) -> Orchestrator:  # type: ignore
         _warn_deprecated("'Core'", suggest="the 'Orchestrator' class")
         cls.__logger.warning(
-            "Class `Core` has been deprecated, an object of class `Orchestrator` will be created instead."
+            "The `Core` service is deprecated and replaced by the `Orchestrator` service. "
+            "An `Orchestrator` instance has been instantiated instead."
         )
         return Orchestrator()