diff -r cde9bde830ea -r 2a9f5153c438 eric7/PluginManager/PluginRepositoryDialog.py --- a/eric7/PluginManager/PluginRepositoryDialog.py Sun May 23 13:33:13 2021 +0200 +++ b/eric7/PluginManager/PluginRepositoryDialog.py Sun May 23 15:35:49 2021 +0200 @@ -33,7 +33,9 @@ from EricNetwork.EricNetworkProxyFactory import proxyAuthenticationRequired try: - from EricNetwork.EricSslErrorHandler import EricSslErrorHandler, EricSslErrorState + from EricNetwork.EricSslErrorHandler import ( + EricSslErrorHandler, EricSslErrorState + ) SSL_AVAILABLE = True except ImportError: SSL_AVAILABLE = False @@ -392,7 +394,9 @@ self.__repositoryMissing = False f = QFile(self.pluginRepositoryFile) if f.open(QIODevice.OpenModeFlag.ReadOnly): - from EricXML.PluginRepositoryReader import PluginRepositoryReader + from EricXML.PluginRepositoryReader import ( + PluginRepositoryReader + ) reader = PluginRepositoryReader(f, self.addEntry) reader.readXML() self.repositoryList.resizeColumnToContents(0)