summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--git/objects/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/util.py b/git/objects/util.py
index c123b02a..012f9f23 100644
--- a/git/objects/util.py
+++ b/git/objects/util.py
@@ -262,7 +262,7 @@ class ProcessStreamAdapter(object):
it if the instance goes out of scope."""
__slots__ = ("_proc", "_stream")
- def __init__(self, process: Popen, stream_name: str):
+ def __init__(self, process: 'Popen', stream_name: str):
self._proc = process
self._stream = getattr(process, stream_name)