jrobinAV 9 месяцев назад
Родитель
Сommit
94d98b858b
2 измененных файлов с 3 добавлено и 3 удалено
  1. 1 1
      taipy/core/notification/__init__.py
  2. 2 2
      taipy/core/notification/notifier.py

+ 1 - 1
taipy/core/notification/__init__.py

@@ -10,7 +10,7 @@
 # specific language governing permissions and limitations under the License.
 
 """
-Package for notifications about changes on `Core^` service entities.
+Package for notifications about changes on `Orchestrator^` service entities.
 
 
 The Core service generates `Event^` objects to track changes on entities.

+ 2 - 2
taipy/core/notification/notifier.py

@@ -51,7 +51,7 @@ def _publish_event(
 
 
 class Notifier:
-    """A class for managing event registrations and publishing `Core^` service events."""
+    """A class for managing event registrations and publishing `Orchestrator^` service events."""
 
     _topics_registrations_list: Dict[_Topic, Set[_Registration]] = {}
 
@@ -166,7 +166,7 @@ class Notifier:
 
     @classmethod
     def publish(cls, event) -> None:
-        """Publish a `Core^` service event to all registered listeners whose topic matches the event.
+        """Publish a `Orchestrator^` service event to all registered listeners whose topic matches the event.
 
         Parameters:
             event (Event^): The event to publish.