File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ def register_future() -> Future:
1919
2020def loop_completed (result : str ):
2121 """
22- Callback to be called when loop is complete.
22+ Callback to be executed when loop is complete.
2323
24- :param str result: Simple string describing the state of the loop
24+ :param str result: Result of the loop & its execution time.
2525 """
2626 LOGGER .success (result )
Original file line number Diff line number Diff line change @@ -19,11 +19,10 @@ def register_future() -> Future:
1919
2020def loop_completed (result : str ):
2121 """
22- Callback function fired when loop is complete.
22+ Callback to be executed when loop is complete.
2323
24- :param str result: Message describing the state of the loop & its execution time.
24+ :param str result: Result of the loop & its execution time.
2525 """
2626 LOGGER .success (
27- f"{ result } \
28- \n --------------------------------------"
27+ f"{ result } \n --------------------------------------"
2928 )
You can’t perform that action at this time.
0 commit comments