Skip to content

Commit e836e5c

Browse files
committed
chore(remote): better super-class call syntax
Python :) !! Related to #451
1 parent fb20477 commit e836e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ class CallableRemoteProgress(RemoteProgress):
320320

321321
def __init__(self, fn):
322322
self._callable = fn
323-
RemoteProgress.__init__(self)
323+
super(CallableRemoteProgress, self).__init__()
324324

325325
def update(self, *args, **kwargs):
326326
self._callable(*args, **kwargs)

0 commit comments

Comments
 (0)