diff -r 8f3ee84ae342 -r f05818ae6431 eric7/Preferences/ConfigurationPages/WebBrowserInterfacePage.py --- a/eric7/Preferences/ConfigurationPages/WebBrowserInterfacePage.py Wed Nov 03 19:45:20 2021 +0100 +++ b/eric7/Preferences/ConfigurationPages/WebBrowserInterfacePage.py Wed Nov 03 20:02:41 2021 +0100 @@ -57,7 +57,7 @@ Private method to populate the style combo box. """ curStyle = Preferences.getUI("Style") - styles = sorted(list(QStyleFactory.keys())) + styles = sorted(QStyleFactory.keys()) self.styleComboBox.addItem(self.tr('System'), "System") for style in styles: self.styleComboBox.addItem(style, style)