--- a/eric6/UI/DiffDialog.py Sat Apr 10 18:31:17 2021 +0200 +++ b/eric6/UI/DiffDialog.py Sat Apr 10 18:38:27 2021 +0200 @@ -37,7 +37,7 @@ @param parent reference to the parent widget (QWidget) """ - super(DiffDialog, self).__init__(parent) + super().__init__(parent) self.setupUi(self) self.file1Picker.setMode(E5PathPickerModes.OpenFileMode) @@ -79,7 +79,7 @@ """ if filename: self.file1Picker.setText(filename) - super(DiffDialog, self).show() + super().show() def on_buttonBox_clicked(self, button): """ @@ -286,7 +286,7 @@ @param parent reference to the parent widget (QWidget) """ - super(DiffWindow, self).__init__(parent) + super().__init__(parent) self.setStyle(Preferences.getUI("Style"), Preferences.getUI("StyleSheet"))