--- a/eric6/CondaInterface/CondaPackageDetailsWidget.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/CondaInterface/CondaPackageDetailsWidget.py Sat Apr 10 18:38:27 2021 +0200 @@ -28,7 +28,7 @@ @param parent reference to the parent widget @type QWidget """ - super(CondaPackageDetailsWidget, self).__init__(parent) + super().__init__(parent) self.setupUi(self) self.headerLabel.setText(self.tr("<b>{0} / {1} / {2}</b>").format( @@ -75,7 +75,7 @@ @param parent reference to the parent widget @type QWidget """ - super(CondaPackageDetailsDialog, self).__init__(parent) + super().__init__(parent) self.setSizeGripEnabled(True) self.__layout = QVBoxLayout(self)