(self, response)
| 72 | return result |
| 73 | |
| 74 | def _parse_plans(self, response): |
| 75 | plans = [] |
| 76 | for line in response.splitlines(): |
| 77 | if line.startswith("Plan:"): |
| 78 | plans.append(line) |
| 79 | return plans |
| 80 | |
| 81 | def _parse_planner_evidences(self, response): |
| 82 | evidences = {} |