summaryrefslogtreecommitdiff
path: root/git/objects/util.py
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-05-20 14:37:25 +0100
committerYobmod <yobmod@gmail.com>2021-05-20 14:37:25 +0100
commit82b60ab31cfa2ca146069df8dbc21ebfc917db0f (patch)
tree998bd699f34e686dc90b53f3c819f8c45f5d6866 /git/objects/util.py
parentc5c69071fd6c730d29c31759caddb0ba8b8e92c3 (diff)
downloadgitpython-82b60ab31cfa2ca146069df8dbc21ebfc917db0f.tar.gz
Change Popen to forwardref
Diffstat (limited to 'git/objects/util.py')
-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)