diff options
author | Yobmod <yobmod@gmail.com> | 2021-06-30 22:25:30 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-06-30 22:25:30 +0100 |
commit | 237966a20a61237a475135ed8a13b90f65dcb2ca (patch) | |
tree | dc12966ec857300d47ca412cbc73fe16d2d9ff86 /git/util.py | |
parent | b7fe37ac303b68c6251b1a02360bdf4b056d4f77 (diff) | |
download | gitpython-237966a20a61237a475135ed8a13b90f65dcb2ca.tar.gz |
Type Tree.traverse() better
Diffstat (limited to 'git/util.py')
-rw-r--r-- | git/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/util.py b/git/util.py index c7c8d07f..057d7478 100644 --- a/git/util.py +++ b/git/util.py @@ -1072,7 +1072,7 @@ class IterableObj(): Subclasses = [Submodule, Commit, Reference, PushInfo, FetchInfo, Remote]""" __slots__ = () - _id_attribute_ = "attribute that most suitably identifies your instance" + _id_attribute_: str @classmethod def list_items(cls, repo: 'Repo', *args: Any, **kwargs: Any) -> IterableList[T_IterableObj]: |