5 |
5 |
6 """ |
6 """ |
7 Module implementing a special completer for the history. |
7 Module implementing a special completer for the history. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
|
11 |
10 |
12 from PyQt5.QtCore import Qt, QRegExp, QTimer, QSortFilterProxyModel |
11 from PyQt5.QtCore import Qt, QRegExp, QTimer, QSortFilterProxyModel |
13 from PyQt5.QtWidgets import QTableView, QAbstractItemView, QCompleter |
12 from PyQt5.QtWidgets import QTableView, QAbstractItemView, QCompleter |
14 |
13 |
15 from .HistoryModel import HistoryModel |
14 from .HistoryModel import HistoryModel |