--- a/eric6/Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py Sat Apr 10 18:38:27 2021 +0200 @@ -39,7 +39,7 @@ @param vcs reference to the vcs object @param parent reference to the parent widget (QWidget) """ - super(GitBisectLogBrowserDialog, self).__init__(parent) + super().__init__(parent) self.setupUi(self) self.__position = QPoint() @@ -102,7 +102,7 @@ self.move(self.__position) self.__resetUI() - super(GitBisectLogBrowserDialog, self).show() + super().show() def __resetUI(self): """ @@ -381,4 +381,4 @@ self.intercept = False evt.accept() return - super(GitBisectLogBrowserDialog, self).keyPressEvent(evt) + super().keyPressEvent(evt)