Skip to content

Commit

Permalink
Remove explicit PushInfo/FetchInfo inheritance from object
Browse files Browse the repository at this point in the history
I had missed these in f78587f (gitpython-developers#1725).
  • Loading branch information
EliahKagan committed Dec 22, 2023
1 parent d986a59 commit 53e7383
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def to_progress_instance(
return progress


class PushInfo(IterableObj, object):
class PushInfo(IterableObj):
"""
Carries information about the result of a push operation of a single head::
Expand Down Expand Up @@ -300,7 +300,7 @@ def raise_if_error(self) -> None:
raise self.error


class FetchInfo(IterableObj, object):
class FetchInfo(IterableObj):
"""
Carries information about the results of a fetch operation of a single head::
Expand Down

0 comments on commit 53e7383

Please sign in to comment.