--- a/eric6/E5Gui/E5ComboBox.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/E5Gui/E5ComboBox.py Sat Apr 10 18:38:27 2021 +0200 @@ -21,7 +21,7 @@ @param parent reference to the parent widget (QWidget) @param inactiveText text to be shown on inactivity (string) """ - super(E5ComboBox, self).__init__(parent) + super().__init__(parent) self.setMinimumHeight(24) @@ -59,7 +59,7 @@ @param parent reference to the parent widget (QWidget) @param inactiveText text to be shown on inactivity (string) """ - super(E5ClearableComboBox, self).__init__(parent, inactiveText) + super().__init__(parent, inactiveText) from .E5LineEdit import E5ClearableLineEdit self.__lineedit = E5ClearableLineEdit(self, inactiveText)