Browse Source

minor changes

jean-robin medori 2 months ago
parent
commit
ae499ac522

+ 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: