1 parent 3710e24 commit 5eea891Copy full SHA for 5eea891
git/objects/tree.py
@@ -324,6 +324,11 @@ def traverse(self, # type: ignore # overrides super()
324
branch_first, visit_once, ignore_self))
325
326
def list_traverse(self, *args: Any, **kwargs: Any) -> IterableList[IndexObjUnion]:
327
+ """
328
+ :return: IterableList with the results of the traversal as produced by
329
+ traverse()
330
+ Tree -> IterableList[Union['Submodule', 'Tree', 'Blob']]
331
332
return super(Tree, self).list_traverse(* args, **kwargs)
333
334
# List protocol
0 commit comments