Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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