TimeTracker/TimeTracker.py

changeset 80
539c4d42f1b0
parent 79
c363184776fd
child 84
427a7f8d662f
equal deleted inserted replaced
79:c363184776fd 80:539c4d42f1b0
6 """ 6 """
7 Module implementing the time tracker object. 7 Module implementing the time tracker object.
8 """ 8 """
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11 try:
12 str = unicode # __IGNORE_EXCEPTION__
13 except NameError:
14 pass
11 15
12 import os 16 import os
13 17
14 from PyQt5.QtCore import Qt, QObject 18 from PyQt5.QtCore import Qt, QObject
15 from PyQt5.QtGui import QKeySequence 19 from PyQt5.QtGui import QKeySequence

eric ide

mercurial