(self, inner_path)
| 524 | |
| 525 | # Find a task using inner_path |
| 526 | def findTask(self, inner_path): |
| 527 | for task in self.tasks: |
| 528 | if task["inner_path"] == inner_path: |
| 529 | return task |
| 530 | return None # Not found |
| 531 | |
| 532 | # Wait for other tasks |
| 533 | def checkComplete(self): |
no outgoing calls
no test coverage detected