(self)
| 76 | return sum(1 for t in self.tasks if t.status == STATUS_PENDING) |
| 77 | |
| 78 | def done_count(self): |
| 79 | return sum(1 for t in self.tasks if t.status == STATUS_DONE) |
| 80 | |
| 81 | def _queue_path(self): |
| 82 | if self._path: |
no outgoing calls
no test coverage detected