diff libervia/server/utils.py @ 1509:106bae41f5c8

massive refactoring from camelCase -> snake_case. See backend commit log for more details
author Goffi <goffi@goffi.org>
date Sat, 08 Apr 2023 13:44:11 +0200
parents 822bd0139769
children
line wrap: on
line diff
--- a/libervia/server/utils.py	Fri Apr 07 15:20:40 2023 +0200
+++ b/libervia/server/utils.py	Sat Apr 08 13:44:11 2023 +0200
@@ -87,9 +87,9 @@
     def register(self, started_cb=None, finished_cb=None, error_cb=None, timeout=30):
         """register the signals to handle progression
 
-        @param started_cb(callable, None): method to call when progressStarted signal is received
-        @param finished_cb(callable, None): method to call when progressFinished signal is received
-        @param error_cb(callable, None): method to call when progressError signal is received
+        @param started_cb(callable, None): method to call when progress_started signal is received
+        @param finished_cb(callable, None): method to call when progress_finished signal is received
+        @param error_cb(callable, None): method to call when progress_error signal is received
         @param timeout(int): progress time out
             if nothing happen in this progression during this delay,
             an exception is raised