15 ) |
15 ) |
16 from PyQt6.QtWidgets import QWidget, QToolButton, QLabel, QTabWidget |
16 from PyQt6.QtWidgets import QWidget, QToolButton, QLabel, QTabWidget |
17 from PyQt6.QtNetwork import QTcpSocket, QAbstractSocket |
17 from PyQt6.QtNetwork import QTcpSocket, QAbstractSocket |
18 try: |
18 try: |
19 from PyQt6.QtNetwork import QSslSocket, QSslConfiguration |
19 from PyQt6.QtNetwork import QSslSocket, QSslConfiguration |
20 from EricNetwork.EricSslErrorHandler import EricSslErrorHandler, EricSslErrorState |
20 from EricNetwork.EricSslErrorHandler import ( |
|
21 EricSslErrorHandler, EricSslErrorState |
|
22 ) |
21 SSL_AVAILABLE = True |
23 SSL_AVAILABLE = True |
22 except ImportError: |
24 except ImportError: |
23 SSL_AVAILABLE = False |
25 SSL_AVAILABLE = False |
24 |
26 |
25 from EricWidgets import EricMessageBox |
27 from EricWidgets import EricMessageBox |