5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog for the configuration of cookie exceptions. |
7 Module implementing a dialog for the configuration of cookie exceptions. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import pyqtSlot, QSortFilterProxyModel |
10 from PyQt6.QtCore import pyqtSlot, QSortFilterProxyModel |
11 from PyQt5.QtGui import QFont, QFontMetrics |
11 from PyQt6.QtGui import QFont, QFontMetrics |
12 from PyQt5.QtWidgets import QDialog, QCompleter |
12 from PyQt6.QtWidgets import QDialog, QCompleter |
13 |
13 |
14 from .CookieExceptionsModel import CookieExceptionsModel |
14 from .CookieExceptionsModel import CookieExceptionsModel |
15 |
15 |
16 from .Ui_CookiesExceptionsDialog import Ui_CookiesExceptionsDialog |
16 from .Ui_CookiesExceptionsDialog import Ui_CookiesExceptionsDialog |
17 |
17 |