diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-14 10:10:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 10:10:43 +0300 |
commit | 097140ac1a3caf6e3c9980a757d4b52e6a76b789 (patch) | |
tree | c31cf29908f94e7f6792b063df4543d6f83b423c /modules/gitpython_hack.py | |
parent | bda86f0fd9653657c146f7c1128f92771d16ad4e (diff) | |
parent | 778a30a95e216f9f7ce0126dbbdb1334afc3d796 (diff) |
Merge branch 'dev' into master
Diffstat (limited to 'modules/gitpython_hack.py')
-rw-r--r-- | modules/gitpython_hack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gitpython_hack.py b/modules/gitpython_hack.py index e537c1df..b55f0640 100644 --- a/modules/gitpython_hack.py +++ b/modules/gitpython_hack.py @@ -23,7 +23,7 @@ class Git(git.Git): ) return self._parse_object_header(ret) - def stream_object_data(self, ref: str) -> tuple[str, str, int, "Git.CatFileContentStream"]: + def stream_object_data(self, ref: str) -> tuple[str, str, int, Git.CatFileContentStream]: # Not really streaming, per se; this buffers the entire object in memory. # Shouldn't be a problem for our use case, since we're only using this for # object headers (commit objects). |