diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-09 23:33:53 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-09 23:33:53 +0100 |
commit | e6a27adb71d21c81628acbdd65bf07037604ff90 (patch) | |
tree | 874e68e3b8027ff0e1833e55d254b6c40d07bb81 /git/objects/fun.py | |
parent | 2ea528e9fbcac850d99ce527ad4a5e4afb3587a8 (diff) | |
download | gitpython-e6a27adb71d21c81628acbdd65bf07037604ff90.tar.gz |
Use TreeCacheTup type alias throughout
Diffstat (limited to 'git/objects/fun.py')
-rw-r--r-- | git/objects/fun.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/fun.py b/git/objects/fun.py index be541eb8..fc2ea1e7 100644 --- a/git/objects/fun.py +++ b/git/objects/fun.py @@ -215,7 +215,7 @@ def traverse_trees_recursive(odb: 'GitCmdObjectDB', tree_shas: Sequence[Union[by return out -def traverse_tree_recursive(odb: 'GitCmdObjectDB', tree_sha: bytes, path_prefix: str) -> List[Tuple[bytes, int, str]]: +def traverse_tree_recursive(odb: 'GitCmdObjectDB', tree_sha: bytes, path_prefix: str) -> List[EntryTup]: """ :return: list of entries of the tree pointed to by the binary tree_sha. An entry has the following format: |