11 def initSSL(): |
11 def initSSL(): |
12 """ |
12 """ |
13 Function to initialize some global SSL stuff. |
13 Function to initialize some global SSL stuff. |
14 """ |
14 """ |
15 try: |
15 try: |
16 from PyQt6.QtNetwork import QSslConfiguration |
16 from PyQt6.QtNetwork import QSslConfiguration # __IGNORE_WARNING_I10__ |
17 except ImportError: |
17 except ImportError: |
18 # no SSL available, so there is nothing to initialize |
18 # no SSL available, so there is nothing to initialize |
19 return |
19 return |
20 |
20 |
21 blacklist = [ |
21 blacklist = [ |