making function name lowercase

This commit is contained in:
Mose Mueller 2024-02-13 11:12:54 +01:00
parent 23037b7f1a
commit a43cdbdd5b

View File

@ -30,10 +30,10 @@ class IonizerServer:
port=port, # type: ignore port=port, # type: ignore
) )
self.data_service_observer.add_notification_callback(self.notify_Ionizer) self.data_service_observer.add_notification_callback(self.notify_ionizer)
self.server.install_signal_handlers = lambda: None # type: ignore self.server.install_signal_handlers = lambda: None # type: ignore
def notify_Ionizer( def notify_ionizer(
self, full_access_path: str, value: Any, cached_value: dict[str, Any] self, full_access_path: str, value: Any, cached_value: dict[str, Any]
) -> None: ) -> None:
"""This function notifies Ionizer about changed values. """This function notifies Ionizer about changed values.