--- a/eric6/PluginManager/PluginInstallDialog.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/PluginManager/PluginInstallDialog.py Sat Apr 10 18:38:27 2021 +0200 @@ -48,7 +48,7 @@ installation (list of strings) @param parent parent of this dialog (QWidget) """ - super(PluginInstallWidget, self).__init__(parent) + super().__init__(parent) self.setupUi(self) if pluginManager is None: @@ -620,7 +620,7 @@ installation (list of strings) @param parent reference to the parent widget (QWidget) """ - super(PluginInstallDialog, self).__init__(parent) + super().__init__(parent) self.setSizeGripEnabled(True) self.__layout = QVBoxLayout(self) @@ -657,7 +657,7 @@ installation (list of strings) @param parent reference to the parent widget (QWidget) """ - super(PluginInstallWindow, self).__init__(parent) + super().__init__(parent) self.cw = PluginInstallWidget(None, pluginFileNames, self) size = self.cw.size() self.setCentralWidget(self.cw)