7 Module implementing the password manager. |
7 Module implementing the password manager. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt5.QtCore import ( |
12 from PyQt6.QtCore import ( |
13 pyqtSignal, QObject, QByteArray, QUrl, QCoreApplication, QXmlStreamReader |
13 pyqtSignal, QObject, QByteArray, QUrl, QCoreApplication, QXmlStreamReader |
14 ) |
14 ) |
15 from PyQt5.QtWidgets import QApplication |
15 from PyQt6.QtWidgets import QApplication |
16 from PyQt5.QtWebEngineWidgets import QWebEngineScript |
16 from PyQt6.QtWebEngineWidgets import QWebEngineScript |
17 |
17 |
18 from E5Gui import E5MessageBox |
18 from E5Gui import E5MessageBox |
19 from E5Gui.E5ProgressDialog import E5ProgressDialog |
19 from E5Gui.E5ProgressDialog import E5ProgressDialog |
20 |
20 |
21 from Utilities.AutoSaver import AutoSaver |
21 from Utilities.AutoSaver import AutoSaver |