(self)
| 916 | print("ERROR while executing todo %s (%s)" % (self.get_title(), e)) |
| 917 | |
| 918 | def get_menu_item(self): |
| 919 | return FunctionItem(self.get_title, self.display_and_confirm) |
| 920 | |
| 921 | def clone(self): |
| 922 | clone = Todo(self.id, self.title, description=self.description) |
no outgoing calls
no test coverage detected