attached timestamps object

This commit is contained in:
2023-02-03 00:54:00 +01:00
parent 23afec2aa4
commit 87ae26247d

View File

@ -3,6 +3,7 @@ from PyQt5.QtWidgets import QListWidgetItem
from PyQt5.QtGui import QIcon, QPixmap, QPainter
from ..theme import DOT_PEN, DOT_BRUSH, DOT_SIZE
from .timestamps import Timestamps
class DictListItem(QListWidgetItem):
@ -12,6 +13,7 @@ class DictListItem(QListWidgetItem):
self.key = key
self.value = value
self.set_alarm(False)
self.timestamps = Timestamps()
_sort_key = None