--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HisteditExtension/HgHisteditPlanEditor.py Sat Apr 10 18:38:27 2021 +0200 @@ -30,7 +30,7 @@ @param column column number inside the tree widget item @type int """ - super(HgHisteditPlanActionComboBox, self).__init__() + super().__init__() self.__item = item self.__column = column @@ -66,7 +66,7 @@ current item of the tree widget. """ self.__item.treeWidget().setCurrentItem(self.__item) - super(HgHisteditPlanActionComboBox, self).showPopup() + super().showPopup() class HgHisteditPlanEditor(QDialog, Ui_HgHisteditPlanEditor): @@ -83,7 +83,7 @@ @param parent reference to the parent widget @type QWidget """ - super(HgHisteditPlanEditor, self).__init__(parent) + super().__init__(parent) self.setupUi(self) self.upButton.setIcon(UI.PixmapCache.getIcon("1uparrow"))