25 @param errorsDict error exceptions |
25 @param errorsDict error exceptions |
26 @type dict of list of int |
26 @type dict of list of int |
27 @param parent reference to the parent widget |
27 @param parent reference to the parent widget |
28 @type QWidget |
28 @type QWidget |
29 """ |
29 """ |
30 super(SslErrorExceptionsDialog, self).__init__(parent) |
30 super().__init__(parent) |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 |
32 |
33 self.__errorDescriptions = { |
33 self.__errorDescriptions = { |
34 QWebEngineCertificateError.Error.SslPinnedKeyNotInCertificateChain: |
34 QWebEngineCertificateError.Error.SslPinnedKeyNotInCertificateChain: |
35 self.tr("The certificate did not match the built-in public" |
35 self.tr("The certificate did not match the built-in public" |