--- a/eric6/E5Gui/E5PathPicker.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/E5Gui/E5PathPicker.py Sat Apr 10 18:38:27 2021 +0200 @@ -69,7 +69,7 @@ @param useLineEdit flag indicating the use of a line edit @type bool """ - super(E5PathPickerBase, self).__init__(parent) + super().__init__(parent) self.__lineEditKind = useLineEdit @@ -684,7 +684,7 @@ @param parent reference to the parent widget @type QWidget """ - super(E5PathPicker, self).__init__(parent, useLineEdit=True) + super().__init__(parent, useLineEdit=True) class E5ComboPathPicker(E5PathPickerBase): @@ -699,7 +699,7 @@ @param parent reference to the parent widget @type QWidget """ - super(E5ComboPathPicker, self).__init__(parent, useLineEdit=False) + super().__init__(parent, useLineEdit=False) def getPathItems(self): """