(self, id)
| 576 | return "<git-rev>" |
| 577 | |
| 578 | def get_group_by_id(self, id): |
| 579 | lst = list(filter(lambda x: x.id == id, self.todo_groups)) |
| 580 | if len(lst) == 1: |
| 581 | return lst[0] |
| 582 | else: |
| 583 | return None |
| 584 | |
| 585 | def get_todo_by_id(self, id): |
| 586 | lst = list(filter(lambda x: x.id == id, self.todos.values())) |
no outgoing calls
no test coverage detected