(self)
| 361 | self.current_group = idx |
| 362 | |
| 363 | def total(self): |
| 364 | total = 0 |
| 365 | for group in self.groups: |
| 366 | for tg in group: |
| 367 | try: |
| 368 | total += len(tg.tasks) |
| 369 | except AttributeError: |
| 370 | total += 1 |
| 371 | return total |
| 372 | |
| 373 | def get_targets(self): |
| 374 | to_post = [] |
no outgoing calls
no test coverage detected