소스 검색

Update taipy/core/_core.py

Co-authored-by: Jean-Robin <jeanrobin.medori@avaiga.com>
Toan Quach 8 달 전
부모
커밋
286a233794
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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()