summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorsroet <sanderroet@hotmail.com>2021-09-10 17:06:53 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-09-18 09:26:28 +0800
commitd6cdafe223fe2e4ec17c52d4bd5ad7affc599814 (patch)
treef227aea460f211718681744b940e254786ae74dd /git/cmd.py
parent5ec7967b64f1aea7e3258e0c1c8033639d0320ff (diff)
downloadgitpython-d6cdafe223fe2e4ec17c52d4bd5ad7affc599814.tar.gz
reset default timeout to None
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py2
1 files changed, 1 insertions, 1 deletions
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