diff -r fb0ef164f536 -r 698ae46f40a4 eric6/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py --- a/eric6/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py Fri Apr 02 11:59:41 2021 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py Sat May 01 14:27:20 2021 +0200 @@ -41,7 +41,7 @@ @param vcs reference to the vcs object @param parent reference to the parent widget (QWidget) """ - super(GitReflogBrowserDialog, self).__init__(parent) + super().__init__(parent) self.setupUi(self) self.__position = QPoint() @@ -115,7 +115,7 @@ self.move(self.__position) self.__resetUI() - super(GitReflogBrowserDialog, self).show() + super().show() def __resetUI(self): """ @@ -429,7 +429,7 @@ self.intercept = False evt.accept() return - super(GitReflogBrowserDialog, self).keyPressEvent(evt) + super().keyPressEvent(evt) @pyqtSlot() def on_nextButton_clicked(self):