diff options
author | Yobmod <yobmod@gmail.com> | 2021-06-24 14:27:13 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-06-24 14:27:13 +0100 |
commit | c3903d8e03af5c1e01c1a96919b926c55f45052e (patch) | |
tree | 20846bb1715679da0497b66296da4fb7f59a159f /git/objects/commit.py | |
parent | 42e4f5e26b812385df65f8f32081035e2fb2a121 (diff) | |
download | gitpython-c3903d8e03af5c1e01c1a96919b926c55f45052e.tar.gz |
Make IterableList generic and update throughout
Diffstat (limited to 'git/objects/commit.py')
-rw-r--r-- | git/objects/commit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/objects/commit.py b/git/objects/commit.py index 26db6e36..0b707450 100644 --- a/git/objects/commit.py +++ b/git/objects/commit.py @@ -8,7 +8,7 @@ from gitdb import IStream from git.util import ( hex_to_bin, Actor, - Iterable, + IterableObj, Stats, finalize_process ) @@ -47,7 +47,7 @@ log.addHandler(logging.NullHandler()) __all__ = ('Commit', ) -class Commit(base.Object, Iterable, Diffable, Traversable, Serializable): +class Commit(base.Object, IterableObj, Diffable, Traversable, Serializable): """Wraps a git Commit object. |