Skip to content

Commit 120b945

Browse files
committed
undo: Use py3k-style super
1 parent 09ecc41 commit 120b945

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meld/undo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def __init__(self, buffers):
8484
expects to maintain undo checkpoints for the same set of
8585
buffers for the lifetime of the UndoSequence.
8686
"""
87-
GObject.GObject.__init__(self)
87+
super().__init__()
8888
self.buffer_refs = [weakref.ref(buf) for buf in buffers]
8989
self.clear()
9090

0 commit comments

Comments
 (0)