소스 검색

minor changes

jean-robin medori 2 달 전
부모
커밋
ae499ac522
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      taipy/core/_orchestrator/_orchestrator_factory.py
  2. 1 1
      taipy/core/data/_data_duplicator.py

+ 1 - 1
taipy/core/_orchestrator/_orchestrator_factory.py

@@ -40,7 +40,7 @@ class _OrchestratorFactory:
         if EnterpriseEditionUtils._using_enterprise():
             cls._orchestrator = _load_fct(
                 cls._TAIPY_ENTERPRISE_CORE_ORCHESTRATOR_MODULE,
-                "Orchestrator",
+                "_Orchestrator",
             )  # type: ignore
         else:
             cls._orchestrator = _Orchestrator  # type: ignore

+ 1 - 1
taipy/core/data/_data_duplicator.py

@@ -30,7 +30,7 @@ class _DataDuplicator:
     def duplicate_data(self, dest: DataNode):
         """Duplicate the src data to the data of the destination data node.
 
-        Parameters:
+        Arguments:
             dest (DataNode): The destination data node.
 
         Raises: