--- a/eric6/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py Sat Apr 10 18:38:27 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):