7 Module implementing a dialog to show and edit all certificates. |
7 Module implementing a dialog to show and edit all certificates. |
8 """ |
8 """ |
9 |
9 |
10 import contextlib |
10 import contextlib |
11 |
11 |
12 from PyQt5.QtCore import ( |
12 from PyQt6.QtCore import ( |
13 pyqtSlot, Qt, QByteArray, QFile, QFileInfo, QIODevice |
13 pyqtSlot, Qt, QByteArray, QFile, QFileInfo, QIODevice |
14 ) |
14 ) |
15 from PyQt5.QtWidgets import QDialog, QTreeWidgetItem |
15 from PyQt6.QtWidgets import QDialog, QTreeWidgetItem |
16 with contextlib.suppress(ImportError): |
16 with contextlib.suppress(ImportError): |
17 from PyQt5.QtNetwork import ( |
17 from PyQt6.QtNetwork import ( |
18 QSslCertificate, QSslSocket, QSslConfiguration, QSsl |
18 QSslCertificate, QSslSocket, QSslConfiguration, QSsl |
19 ) |
19 ) |
20 |
20 |
21 from E5Gui import E5MessageBox, E5FileDialog |
21 from E5Gui import E5MessageBox, E5FileDialog |
22 |
22 |