Изменил вывод информации об успешном/неудачном затрекивании задачи

This commit is contained in:
2025-09-30 11:48:36 +03:00
parent ee4fc1b8f8
commit 8c603cc7ab
2 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ class Activity:
is_tracked: bool = False
def __str__(self):
return f'|{self.date_start + timedelta(hours=3)}| {self.description} для задачи #{self.task_id}'
return f'({self.task_id}) - {self.description};'
@dataclass