eric7/PluginManager/PluginRepositoryDialog.py

branch
eric7
changeset 8366
2a9f5153c438
parent 8358
144a6b854f70
child 8580
e91b276e0771
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)

eric ide

mercurial