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