86:94ee489db94c | 87:4ac2329b36da |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the time tracker object. | 7 Module implementing the time tracker object. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals | |
11 try: | |
12 str = unicode # __IGNORE_EXCEPTION__ | |
13 except NameError: | |
14 pass | |
15 | 9 |
16 import os | 10 import os |
17 | 11 |
18 from PyQt5.QtCore import Qt, QObject | 12 from PyQt5.QtCore import Qt, QObject |
19 from PyQt5.QtGui import QKeySequence | 13 from PyQt5.QtGui import QKeySequence |