diff -r cde9bde830ea -r 2a9f5153c438 eric7/UI/UserInterface.py --- a/eric7/UI/UserInterface.py Sun May 23 13:33:13 2021 +0200 +++ b/eric7/UI/UserInterface.py Sun May 23 15:35:49 2021 +0200 @@ -60,7 +60,9 @@ EricNetworkProxyFactory, proxyAuthenticationRequired ) try: - from EricNetwork.EricSslErrorHandler import EricSslErrorHandler, EricSslErrorState + from EricNetwork.EricSslErrorHandler import ( + EricSslErrorHandler, EricSslErrorState + ) SSL_AVAILABLE = True except ImportError: SSL_AVAILABLE = False @@ -610,7 +612,8 @@ if self.numbersViewer is not None: ericApp().registerObject("Numbers", self.numbersViewer) if self.codeDocumentationViewer is not None: - ericApp().registerObject("DocuViewer", self.codeDocumentationViewer) + ericApp().registerObject("DocuViewer", + self.codeDocumentationViewer) if self.microPythonWidget is not None: ericApp().registerObject("MicroPython", self.microPythonWidget) @@ -824,7 +827,9 @@ @param debugServer reference to the debug server object """ - from EricWidgets.EricToolBox import EricVerticalToolBox, EricHorizontalToolBox + from EricWidgets.EricToolBox import ( + EricVerticalToolBox, EricHorizontalToolBox + ) logging.debug("Creating Toolboxes Layout...") @@ -6354,7 +6359,9 @@ """ Private slot to show the certificates management dialog. """ - from EricNetwork.EricSslCertificatesDialog import EricSslCertificatesDialog + from EricNetwork.EricSslCertificatesDialog import ( + EricSslCertificatesDialog + ) dlg = EricSslCertificatesDialog(self) dlg.exec()