--- a/src/eric7/EricNetwork/EricSslCertificatesDialog.py Mon Sep 23 14:37:31 2024 +0200 +++ b/src/eric7/EricNetwork/EricSslCertificatesDialog.py Tue Sep 24 17:52:41 2024 +0200 @@ -126,9 +126,8 @@ Private slot to show data of the selected server certificate. """ with contextlib.suppress(ImportError): - from eric7.EricNetwork.EricSslCertificatesInfoDialog import ( # noqa: I101 - EricSslCertificatesInfoDialog, - ) + from .EricSslCertificatesInfoDialog import EricSslCertificatesInfoDialog + # noqa: I101 cert = QSslCertificate.fromData( self.serversCertificatesTree.currentItem().data(0, self.CertRole) @@ -349,9 +348,8 @@ Private slot to show data of the selected CA certificate. """ with contextlib.suppress(ImportError): - from eric7.EricNetwork.EricSslCertificatesInfoDialog import ( # noqa: I101 - EricSslCertificatesInfoDialog, - ) + from .EricSslCertificatesInfoDialog import EricSslCertificatesInfoDialog + # noqa: I101 cert = QSslCertificate.fromData( self.caCertificatesTree.currentItem().data(0, self.CertRole)