From d6cdafe223fe2e4ec17c52d4bd5ad7affc599814 Mon Sep 17 00:00:00 2001 From: sroet Date: Fri, 10 Sep 2021 17:06:53 +0200 Subject: reset default timeout to None --- git/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git/cmd.py') diff --git a/git/cmd.py b/git/cmd.py index 13c5e7a5..0deb4ffc 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -79,7 +79,7 @@ def handle_process_output(process: 'Git.AutoInterrupt' | Popen, finalizer: Union[None, Callable[[Union[subprocess.Popen, 'Git.AutoInterrupt']], None]] = None, decode_streams: bool = True, - timeout: float = 60.0) -> None: + timeout: Union[None, float] = None) -> None: """Registers for notifications to learn that process output is ready to read, and dispatches lines to the respective line handlers. This function returns once the finalizer returns -- cgit v1.2.1