--- a/eric6/Network/IRC/IrcIdentitiesEditDialog.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/Network/IRC/IrcIdentitiesEditDialog.py Sat Apr 10 18:38:27 2021 +0200 @@ -35,7 +35,7 @@ @param identityName name of the identity to be selected (string) @param parent reference to the parent widget (QWidget) """ - super(IrcIdentitiesEditDialog, self).__init__(parent) + super().__init__(parent) self.setupUi(self) self.addButton.setIcon(UI.PixmapCache.getIcon("plus")) @@ -85,7 +85,7 @@ self.on_nicknameAddButton_clicked() return True - return super(IrcIdentitiesEditDialog, self).eventFilter(obj, evt) + return super().eventFilter(obj, evt) def __updateIdentitiesButtons(self): """ @@ -490,4 +490,4 @@ self.__refreshCurrentIdentity() self.__manager.setIdentities(self.__identities) - super(IrcIdentitiesEditDialog, self).accept() + super().accept()