diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-07-11 12:30:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-11 12:30:59 +0800 |
commit | 9523033fd1ff499ae3d151b23b851b7e2b64bf75 (patch) | |
tree | c2f7b467186269926c48c4b2cf02d8364dc39751 /git/cmd.py | |
parent | 0a6d9d669979cc5a89ca73f8f4843cba47b4486a (diff) | |
parent | 94c66525a6e7d5c74a9aee65d14630bb674439f7 (diff) | |
download | gitpython-9523033fd1ff499ae3d151b23b851b7e2b64bf75.tar.gz |
Merge pull request #1285 from Yobmod/main
Finish initial typing of Index and Submodule
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -831,7 +831,7 @@ class Git(LazyMixin): except cmd_not_found_exception as err: raise GitCommandNotFound(redacted_command, err) from err else: - proc = cast(Popen, proc) + # replace with a typeguard for Popen[bytes]? proc.stdout = cast(BinaryIO, proc.stdout) proc.stderr = cast(BinaryIO, proc.stderr) |