TimeTracker/TimeTrackEntry.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 track entry class. 7 Module implementing the time track entry class.
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 from PyQt5.QtCore import Qt, QDateTime, QTime 16 from PyQt5.QtCore import Qt, QDateTime, QTime
13 17
14 18
15 class TimeTrackEntry(object): 19 class TimeTrackEntry(object):

eric ide

mercurial