@@ -788,8 +788,8 @@ def live_info_terminal(
788788 Parameters
789789 ----------
790790 update_interval : float, optional
791- The time interval (in seconds) at which the runner's status is updated in the terminal.
792- Default is 0.5 seconds.
791+ The time interval (in seconds) at which the runner's status is updated
792+ in the terminal. Default is 0.5 seconds.
793793 overwrite_previous : bool, optional
794794 If True, each update will overwrite the previous status in the terminal.
795795 If False, each update will be printed on a new line.
@@ -798,7 +798,8 @@ def live_info_terminal(
798798 Returns
799799 -------
800800 asyncio.Task
801- The asynchronous task responsible for updating the runner's status in the terminal.
801+ The asynchronous task responsible for updating the runner's status in
802+ the terminal.
802803
803804 Examples
804805 --------
@@ -807,8 +808,8 @@ def live_info_terminal(
807808
808809 Notes
809810 -----
810- This function uses ANSI escape sequences to control the terminal's cursor position.
811- It might not work as expected on all terminal emulators.
811+ This function uses ANSI escape sequences to control the terminal's cursor
812+ position. It might not work as expected on all terminal emulators.
812813 """
813814
814815 async def _update (runner : AsyncRunner ) -> None :
@@ -1189,7 +1190,8 @@ def auto_goal(
11891190 for lrn in learner .learners
11901191 ]
11911192 return lambda learner : all (
1192- goal (lrn ) for lrn , goal in zip (learner .learners , goals ) # type: ignore[attr-defined]
1193+ goal (lrn )
1194+ for lrn , goal in zip (learner .learners , goals ) # type: ignore[attr-defined]
11931195 )
11941196 if npoints is not None :
11951197 return lambda learner : learner .npoints >= npoints # type: ignore[operator]
0 commit comments