Get the result for a group.
(self, group_id, cache=True)
| 766 | return meta |
| 767 | |
| 768 | def restore_group(self, group_id, cache=True): |
| 769 | """Get the result for a group.""" |
| 770 | meta = self.get_group_meta(group_id, cache=cache) |
| 771 | if meta: |
| 772 | return meta['result'] |
| 773 | |
| 774 | def save_group(self, group_id, result): |
| 775 | """Store the result of an executed group.""" |